@dignite-ng/expand.dynamic-form 0.0.17 → 0.0.19
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/dignite-ng-expand.dynamic-form.mjs +1 -1
- package/esm2022/lib/components/dynamic/dynamic.component.mjs +11 -24
- package/esm2022/lib/components/dynamic/index.mjs +1 -1
- package/esm2022/lib/components/from/ck-editor/ck-editor-config.component.mjs +8 -16
- package/esm2022/lib/components/from/ck-editor/ck-editor-config.mjs +7 -7
- package/esm2022/lib/components/from/ck-editor/ck-editor-control.component.mjs +36 -49
- package/esm2022/lib/components/from/ck-editor/ckEditorUpload.mjs +9 -12
- package/esm2022/lib/components/from/ck-editor/index.mjs +1 -1
- package/esm2022/lib/components/from/date-edit/date-edit-config.component.mjs +9 -17
- package/esm2022/lib/components/from/date-edit/date-edit-config.mjs +7 -7
- package/esm2022/lib/components/from/date-edit/date-edit-control.component.mjs +11 -21
- package/esm2022/lib/components/from/date-edit/index.mjs +1 -1
- package/esm2022/lib/components/from/form-control-group.mjs +1 -1
- package/esm2022/lib/components/from/index.mjs +1 -1
- package/esm2022/lib/components/from/numeric-edit/index.mjs +1 -1
- package/esm2022/lib/components/from/numeric-edit/numberic-edit-config.component.mjs +8 -16
- package/esm2022/lib/components/from/numeric-edit/numberic-edit-config.mjs +13 -13
- package/esm2022/lib/components/from/numeric-edit/numberic-edit-control.component.mjs +10 -20
- package/esm2022/lib/components/from/select/index.mjs +1 -1
- package/esm2022/lib/components/from/select/select-config.component.mjs +9 -18
- package/esm2022/lib/components/from/select/select-config.mjs +7 -7
- package/esm2022/lib/components/from/select/select-control.component.mjs +11 -20
- package/esm2022/lib/components/from/switch/index.mjs +1 -1
- package/esm2022/lib/components/from/switch/switch-config.component.mjs +8 -16
- package/esm2022/lib/components/from/switch/switch-config.mjs +3 -3
- package/esm2022/lib/components/from/switch/switch-control.component.mjs +10 -19
- package/esm2022/lib/components/from/text-edit/index.mjs +1 -1
- package/esm2022/lib/components/from/text-edit/text-edit-config.component.mjs +9 -17
- package/esm2022/lib/components/from/text-edit/text-edit-config.mjs +7 -7
- package/esm2022/lib/components/from/text-edit/text-edit.component.mjs +12 -22
- package/esm2022/lib/components/index.mjs +1 -1
- package/esm2022/lib/dynamic-form.module.mjs +9 -10
- package/esm2022/lib/enums/date-edit-interfaces.mjs +1 -1
- package/esm2022/lib/enums/text-edit-mode.mjs +1 -1
- package/esm2022/lib/interfaces/form-config-interfaces.mjs +1 -1
- package/esm2022/lib/interfaces/index.mjs +1 -1
- package/esm2022/lib/proxy/dignite/file-explorer/files/file-descriptor.service.mjs +48 -49
- package/esm2022/lib/proxy/dignite/file-explorer/files/index.mjs +1 -1
- package/esm2022/lib/proxy/dignite/file-explorer/files/models.mjs +1 -1
- package/esm2022/lib/proxy/microsoft/asp-net-core/mvc/models.mjs +1 -1
- package/esm2022/lib/proxy/microsoft/extensions/primitives/models.mjs +1 -1
- package/esm2022/lib/proxy/microsoft/net/http/headers/models.mjs +1 -1
- package/esm2022/lib/proxy/volo/abp/content/models.mjs +1 -1
- package/esm2022/lib/services/df-api.service.mjs +6 -7
- package/esm2022/lib/services/index.mjs +1 -1
- package/esm2022/public-api.mjs +1 -1
- package/fesm2022/dignite-ng-expand.dynamic-form.mjs +159 -278
- package/fesm2022/dignite-ng-expand.dynamic-form.mjs.map +1 -1
- package/lib/components/from/form-control-group.d.ts +1 -1
- package/package.json +1 -1
|
@@ -30,13 +30,13 @@ import '@ckeditor/ckeditor5-build-classic/build/translations/vi.js';
|
|
|
30
30
|
import { pinyin } from 'pinyin-pro';
|
|
31
31
|
|
|
32
32
|
class TextEditConfig {
|
|
33
|
-
/**占位符 */
|
|
34
|
-
'TextEdit.Placeholder' = ['', []];
|
|
35
|
-
//字段类型,单行文本,多行文本
|
|
36
|
-
'TextEdit.Mode' = [0, []];
|
|
37
|
-
// 字数限制
|
|
38
|
-
'TextEdit.CharLimit' = ['265', []];
|
|
39
33
|
constructor(data) {
|
|
34
|
+
/**占位符 */
|
|
35
|
+
this['TextEdit.Placeholder'] = ['', []];
|
|
36
|
+
//字段类型,单行文本,多行文本
|
|
37
|
+
this['TextEdit.Mode'] = [0, []];
|
|
38
|
+
// 字数限制
|
|
39
|
+
this['TextEdit.CharLimit'] = ['265', []];
|
|
40
40
|
if (data) {
|
|
41
41
|
for (const key in data) {
|
|
42
42
|
if (data.hasOwnProperty(key)) {
|
|
@@ -56,25 +56,18 @@ var TextEditMode;
|
|
|
56
56
|
})(TextEditMode || (TextEditMode = {}));
|
|
57
57
|
|
|
58
58
|
class TextEditConfigComponent {
|
|
59
|
-
fb;
|
|
60
59
|
constructor(fb) {
|
|
61
60
|
this.fb = fb;
|
|
61
|
+
this._TextEditMode = TextEditMode;
|
|
62
62
|
}
|
|
63
|
-
_TextEditMode = TextEditMode;
|
|
64
|
-
/**表单控件类型 */
|
|
65
|
-
_type;
|
|
66
63
|
set type(v) {
|
|
67
64
|
this._type = v;
|
|
68
65
|
this.dataLoaded();
|
|
69
66
|
}
|
|
70
|
-
/**表单实体 */
|
|
71
|
-
_Entity;
|
|
72
67
|
set Entity(v) {
|
|
73
68
|
this._Entity = v;
|
|
74
69
|
this.dataLoaded();
|
|
75
70
|
}
|
|
76
|
-
/**选择的表单信息 */
|
|
77
|
-
_selected;
|
|
78
71
|
set selected(v) {
|
|
79
72
|
this._selected = v;
|
|
80
73
|
this.dataLoaded();
|
|
@@ -82,7 +75,6 @@ class TextEditConfigComponent {
|
|
|
82
75
|
get formConfiguration() {
|
|
83
76
|
return this._Entity.get('formConfiguration');
|
|
84
77
|
}
|
|
85
|
-
submitclick;
|
|
86
78
|
async dataLoaded() {
|
|
87
79
|
if (this._Entity && this._type) {
|
|
88
80
|
await this.AfterInit();
|
|
@@ -100,13 +92,13 @@ class TextEditConfigComponent {
|
|
|
100
92
|
resolve(true);
|
|
101
93
|
});
|
|
102
94
|
}
|
|
103
|
-
static
|
|
104
|
-
static
|
|
95
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: TextEditConfigComponent, deps: [{ token: i1.FormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
96
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: TextEditConfigComponent, selector: "df-text-edit-config", inputs: { type: "type", Entity: "Entity", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::Placeholder' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"TextEdit.Placeholder\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::TextEditMode' | abpLocalization}}</label>\n <div>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"_TextEditMode.SingleLine\" formControlName=\"TextEdit.Mode\"\n id=\"flexRadioDefault1\">\n <label class=\"form-check-label\" for=\"flexRadioDefault1\">\n {{'DigniteAbpForms::SingleLine' | abpLocalization}}\n </label>\n </div>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"_TextEditMode.MultipleLine\" formControlName=\"TextEdit.Mode\"\n id=\"flexRadioDefault2\">\n <label class=\"form-check-label\" for=\"flexRadioDefault2\">\n {{'DigniteAbpForms::MultipleLine' | abpLocalization}}\n </label>\n </div>\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::CharLimit' | abpLocalization}}</label>\n <input type=\"number\" class=\"form-control\" formControlName=\"TextEdit.CharLimit\">\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\" #submitclick></button>\n </div>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i1.RadioControlValueAccessor, selector: "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]", inputs: ["name", "formControlName", "value"] }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i2.InitDirective, selector: "[abpInit]", outputs: ["abpInit"] }, { kind: "directive", type: i3.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i3.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
105
97
|
}
|
|
106
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
98
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: TextEditConfigComponent, decorators: [{
|
|
107
99
|
type: Component,
|
|
108
100
|
args: [{ selector: 'df-text-edit-config', template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::Placeholder' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"TextEdit.Placeholder\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::TextEditMode' | abpLocalization}}</label>\n <div>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"_TextEditMode.SingleLine\" formControlName=\"TextEdit.Mode\"\n id=\"flexRadioDefault1\">\n <label class=\"form-check-label\" for=\"flexRadioDefault1\">\n {{'DigniteAbpForms::SingleLine' | abpLocalization}}\n </label>\n </div>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"_TextEditMode.MultipleLine\" formControlName=\"TextEdit.Mode\"\n id=\"flexRadioDefault2\">\n <label class=\"form-check-label\" for=\"flexRadioDefault2\">\n {{'DigniteAbpForms::MultipleLine' | abpLocalization}}\n </label>\n </div>\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::CharLimit' | abpLocalization}}</label>\n <input type=\"number\" class=\"form-control\" formControlName=\"TextEdit.CharLimit\">\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\" #submitclick></button>\n </div>\n</form>" }]
|
|
109
|
-
}], ctorParameters:
|
|
101
|
+
}], ctorParameters: () => [{ type: i1.FormBuilder }], propDecorators: { type: [{
|
|
110
102
|
type: Input
|
|
111
103
|
}], Entity: [{
|
|
112
104
|
type: Input
|
|
@@ -118,41 +110,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
118
110
|
}] } });
|
|
119
111
|
|
|
120
112
|
class TextEditComponent {
|
|
121
|
-
fb;
|
|
122
113
|
constructor(fb) {
|
|
123
114
|
this.fb = fb;
|
|
115
|
+
this._TextEditMode = TextEditMode;
|
|
116
|
+
/**字段配置列表 */
|
|
117
|
+
this._fields = '';
|
|
118
|
+
this.isObjEmpty = (obj) => Object.keys(obj).length === 0;
|
|
124
119
|
}
|
|
125
|
-
_TextEditMode = TextEditMode;
|
|
126
|
-
/**表单实体 */
|
|
127
|
-
_entity;
|
|
128
120
|
set entity(v) {
|
|
129
121
|
this._entity = v;
|
|
130
122
|
if (v)
|
|
131
123
|
this.dataLoaded();
|
|
132
124
|
}
|
|
133
|
-
/**字段配置列表 */
|
|
134
|
-
_fields = '';
|
|
135
125
|
set fields(v) {
|
|
136
126
|
this._fields = v;
|
|
137
127
|
if (v)
|
|
138
128
|
this.dataLoaded();
|
|
139
129
|
}
|
|
140
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
141
|
-
_parentFiledName;
|
|
142
130
|
set parentFiledName(v) {
|
|
143
131
|
this._parentFiledName = v;
|
|
144
132
|
if (v)
|
|
145
133
|
this.dataLoaded();
|
|
146
134
|
}
|
|
147
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
148
|
-
_selected;
|
|
149
135
|
set selected(v) {
|
|
150
136
|
this._selected = v || '';
|
|
151
137
|
if (v)
|
|
152
138
|
this.dataLoaded();
|
|
153
139
|
}
|
|
154
|
-
submitclick;
|
|
155
|
-
extraProperties;
|
|
156
140
|
async dataLoaded() {
|
|
157
141
|
if (this._fields && this._entity && this._parentFiledName) {
|
|
158
142
|
this.extraProperties = this._entity.get(this._parentFiledName);
|
|
@@ -178,14 +162,13 @@ class TextEditComponent {
|
|
|
178
162
|
resolve(true);
|
|
179
163
|
});
|
|
180
164
|
}
|
|
181
|
-
|
|
182
|
-
static
|
|
183
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: TextEditComponent, selector: "df-text-edit", inputs: { entity: "entity", fields: "fields", parentFiledName: "parentFiledName", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_entity\">\n <div [formGroupName]=\"_parentFiledName\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <ng-container *ngIf=\"_fields.field.formConfiguration['TextEdit.Mode'] ===_TextEditMode.SingleLine\">\n <input type=\"text\" class=\"form-control\" formControlName=\"{{_fields.field.name}}\"\n [placeholder]=\"_fields.field.formConfiguration['TextEdit.Placeholder']\" />\n </ng-container>\n <ng-container *ngIf=\"_fields.field.formConfiguration['TextEdit.Mode'] === _TextEditMode.MultipleLine\">\n <textarea class=\"form-control\" formControlName=\"{{_fields.field.name}}\"\n [placeholder]=\"_fields.field.formConfiguration['TextEdit.Placeholder']\" rows=\"3\"></textarea>\n </ng-container>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n </div>\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i3.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i3.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }] });
|
|
165
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: TextEditComponent, deps: [{ token: i1.FormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
166
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: TextEditComponent, selector: "df-text-edit", inputs: { entity: "entity", fields: "fields", parentFiledName: "parentFiledName", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_entity\">\n <div [formGroupName]=\"_parentFiledName\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <ng-container *ngIf=\"_fields.field.formConfiguration['TextEdit.Mode'] ===_TextEditMode.SingleLine\">\n <input type=\"text\" class=\"form-control\" formControlName=\"{{_fields.field.name}}\"\n [placeholder]=\"_fields.field.formConfiguration['TextEdit.Placeholder']\" />\n </ng-container>\n <ng-container *ngIf=\"_fields.field.formConfiguration['TextEdit.Mode'] === _TextEditMode.MultipleLine\">\n <textarea class=\"form-control\" formControlName=\"{{_fields.field.name}}\"\n [placeholder]=\"_fields.field.formConfiguration['TextEdit.Placeholder']\" rows=\"3\"></textarea>\n </ng-container>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n </div>\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i3.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i3.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }] }); }
|
|
184
167
|
}
|
|
185
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
168
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: TextEditComponent, decorators: [{
|
|
186
169
|
type: Component,
|
|
187
170
|
args: [{ selector: 'df-text-edit', template: "<form [formGroup]=\"_entity\">\n <div [formGroupName]=\"_parentFiledName\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <ng-container *ngIf=\"_fields.field.formConfiguration['TextEdit.Mode'] ===_TextEditMode.SingleLine\">\n <input type=\"text\" class=\"form-control\" formControlName=\"{{_fields.field.name}}\"\n [placeholder]=\"_fields.field.formConfiguration['TextEdit.Placeholder']\" />\n </ng-container>\n <ng-container *ngIf=\"_fields.field.formConfiguration['TextEdit.Mode'] === _TextEditMode.MultipleLine\">\n <textarea class=\"form-control\" formControlName=\"{{_fields.field.name}}\"\n [placeholder]=\"_fields.field.formConfiguration['TextEdit.Placeholder']\" rows=\"3\"></textarea>\n </ng-container>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n </div>\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n</form>" }]
|
|
188
|
-
}], ctorParameters:
|
|
171
|
+
}], ctorParameters: () => [{ type: i1.FormBuilder }], propDecorators: { entity: [{
|
|
189
172
|
type: Input
|
|
190
173
|
}], fields: [{
|
|
191
174
|
type: Input
|
|
@@ -199,9 +182,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
199
182
|
}] } });
|
|
200
183
|
|
|
201
184
|
class SwitchConfig {
|
|
202
|
-
/**默认值 */
|
|
203
|
-
'Switch.Default' = [false, []];
|
|
204
185
|
constructor(data) {
|
|
186
|
+
/**默认值 */
|
|
187
|
+
this['Switch.Default'] = [false, []];
|
|
205
188
|
if (data) {
|
|
206
189
|
for (const key in data) {
|
|
207
190
|
if (data.hasOwnProperty(key)) {
|
|
@@ -213,24 +196,17 @@ class SwitchConfig {
|
|
|
213
196
|
}
|
|
214
197
|
|
|
215
198
|
class SwitchConfigComponent {
|
|
216
|
-
fb;
|
|
217
199
|
constructor(fb) {
|
|
218
200
|
this.fb = fb;
|
|
219
201
|
}
|
|
220
|
-
/**表单控件类型 */
|
|
221
|
-
_type;
|
|
222
202
|
set type(v) {
|
|
223
203
|
this._type = v;
|
|
224
204
|
this.dataLoaded();
|
|
225
205
|
}
|
|
226
|
-
/**表单实体 */
|
|
227
|
-
_Entity;
|
|
228
206
|
set Entity(v) {
|
|
229
207
|
this._Entity = v;
|
|
230
208
|
this.dataLoaded();
|
|
231
209
|
}
|
|
232
|
-
/**选择的表单信息 */
|
|
233
|
-
_selected;
|
|
234
210
|
set selected(v) {
|
|
235
211
|
this._selected = v;
|
|
236
212
|
this.dataLoaded();
|
|
@@ -238,7 +214,6 @@ class SwitchConfigComponent {
|
|
|
238
214
|
get formConfiguration() {
|
|
239
215
|
return this._Entity.get('formConfiguration');
|
|
240
216
|
}
|
|
241
|
-
submitclick;
|
|
242
217
|
async dataLoaded() {
|
|
243
218
|
if (this._Entity && this._type) {
|
|
244
219
|
await this.AfterInit();
|
|
@@ -256,13 +231,13 @@ class SwitchConfigComponent {
|
|
|
256
231
|
resolve(true);
|
|
257
232
|
});
|
|
258
233
|
}
|
|
259
|
-
static
|
|
260
|
-
static
|
|
234
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SwitchConfigComponent, deps: [{ token: i1.FormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
235
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: SwitchConfigComponent, selector: "df-switch-config", inputs: { type: "type", Entity: "Entity", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <div>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" formControlName=\"Switch.Default\"\n id=\"flexRadioDefault1\">\n <label class=\"form-check-label\" for=\"flexRadioDefault1\">\n {{'DigniteAbpForms::DefaultValue' | abpLocalization}}\n </label>\n </div>\n \n </div>\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\" #submitclick></button>\n </div>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i2.InitDirective, selector: "[abpInit]", outputs: ["abpInit"] }, { kind: "directive", type: i3.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i3.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
261
236
|
}
|
|
262
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SwitchConfigComponent, decorators: [{
|
|
263
238
|
type: Component,
|
|
264
239
|
args: [{ selector: 'df-switch-config', template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <div>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" formControlName=\"Switch.Default\"\n id=\"flexRadioDefault1\">\n <label class=\"form-check-label\" for=\"flexRadioDefault1\">\n {{'DigniteAbpForms::DefaultValue' | abpLocalization}}\n </label>\n </div>\n \n </div>\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\" #submitclick></button>\n </div>\n</form>" }]
|
|
265
|
-
}], ctorParameters:
|
|
240
|
+
}], ctorParameters: () => [{ type: i1.FormBuilder }], propDecorators: { type: [{
|
|
266
241
|
type: Input
|
|
267
242
|
}], Entity: [{
|
|
268
243
|
type: Input
|
|
@@ -274,36 +249,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
274
249
|
}] } });
|
|
275
250
|
|
|
276
251
|
class SwitchControlComponent {
|
|
277
|
-
fb;
|
|
278
252
|
constructor(fb) {
|
|
279
253
|
this.fb = fb;
|
|
254
|
+
/**字段配置列表 */
|
|
255
|
+
this._fields = '';
|
|
280
256
|
}
|
|
281
|
-
/**表单实体 */
|
|
282
|
-
_entity;
|
|
283
257
|
set entity(v) {
|
|
284
258
|
this._entity = v;
|
|
285
259
|
this.dataLoaded();
|
|
286
260
|
}
|
|
287
|
-
/**字段配置列表 */
|
|
288
|
-
_fields = '';
|
|
289
261
|
set fields(v) {
|
|
290
262
|
this._fields = v;
|
|
291
263
|
this.dataLoaded();
|
|
292
264
|
}
|
|
293
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
294
|
-
_parentFiledName;
|
|
295
265
|
set parentFiledName(v) {
|
|
296
266
|
this._parentFiledName = v;
|
|
297
267
|
this.dataLoaded();
|
|
298
268
|
}
|
|
299
|
-
/** */
|
|
300
|
-
_selected;
|
|
301
269
|
set selected(v) {
|
|
302
270
|
// ?v:false;
|
|
303
271
|
this._selected = v;
|
|
304
272
|
this.dataLoaded();
|
|
305
273
|
}
|
|
306
|
-
submitclick;
|
|
307
274
|
get extraProperties() {
|
|
308
275
|
return this._entity.get('extraProperties');
|
|
309
276
|
}
|
|
@@ -325,13 +292,13 @@ class SwitchControlComponent {
|
|
|
325
292
|
resolve(true);
|
|
326
293
|
});
|
|
327
294
|
}
|
|
328
|
-
static
|
|
329
|
-
static
|
|
295
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SwitchControlComponent, deps: [{ token: i1.FormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
296
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: SwitchControlComponent, selector: "df-switch-control", inputs: { entity: "entity", fields: "fields", parentFiledName: "parentFiledName", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_entity\">\n <div formGroupName=\"extraProperties\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <div class=\"form-check form-switch\">\n <input class=\"form-check-input\" type=\"checkbox\" role=\"switch\" formControlName=\"{{_fields.field.name}}\">\n </div>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n\n </div>\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i3.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i3.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }] }); }
|
|
330
297
|
}
|
|
331
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
298
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SwitchControlComponent, decorators: [{
|
|
332
299
|
type: Component,
|
|
333
300
|
args: [{ selector: 'df-switch-control', template: "<form [formGroup]=\"_entity\">\n <div formGroupName=\"extraProperties\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <div class=\"form-check form-switch\">\n <input class=\"form-check-input\" type=\"checkbox\" role=\"switch\" formControlName=\"{{_fields.field.name}}\">\n </div>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n\n </div>\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n</form>" }]
|
|
334
|
-
}], ctorParameters:
|
|
301
|
+
}], ctorParameters: () => [{ type: i1.FormBuilder }], propDecorators: { entity: [{
|
|
335
302
|
type: Input
|
|
336
303
|
}], fields: [{
|
|
337
304
|
type: Input
|
|
@@ -345,19 +312,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
345
312
|
}] } });
|
|
346
313
|
|
|
347
314
|
class NumbericEditConfig {
|
|
348
|
-
/**占位符 */
|
|
349
|
-
'NumericEditField.Placeholder' = ['', []];
|
|
350
|
-
/**最小值 */
|
|
351
|
-
'NumericEditField.Min' = ['', []];
|
|
352
|
-
//最大值
|
|
353
|
-
'NumericEditField.Max' = ['', []];
|
|
354
|
-
// 小数位数
|
|
355
|
-
'NumericEditField.Decimals' = [2, []];
|
|
356
|
-
//步长
|
|
357
|
-
'NumericEditField.Step' = ['', []];
|
|
358
|
-
//格式说明符
|
|
359
|
-
'FormatSpecifier' = ['', []];
|
|
360
315
|
constructor(data) {
|
|
316
|
+
/**占位符 */
|
|
317
|
+
this['NumericEditField.Placeholder'] = ['', []];
|
|
318
|
+
/**最小值 */
|
|
319
|
+
this['NumericEditField.Min'] = ['', []];
|
|
320
|
+
//最大值
|
|
321
|
+
this['NumericEditField.Max'] = ['', []];
|
|
322
|
+
// 小数位数
|
|
323
|
+
this['NumericEditField.Decimals'] = [2, []];
|
|
324
|
+
//步长
|
|
325
|
+
this['NumericEditField.Step'] = ['', []];
|
|
326
|
+
//格式说明符
|
|
327
|
+
this['FormatSpecifier'] = ['', []];
|
|
361
328
|
if (data) {
|
|
362
329
|
for (const key in data) {
|
|
363
330
|
if (data.hasOwnProperty(key)) {
|
|
@@ -369,24 +336,17 @@ class NumbericEditConfig {
|
|
|
369
336
|
}
|
|
370
337
|
|
|
371
338
|
class NumbericEditConfigComponent {
|
|
372
|
-
fb;
|
|
373
339
|
constructor(fb) {
|
|
374
340
|
this.fb = fb;
|
|
375
341
|
}
|
|
376
|
-
/**表单控件类型 */
|
|
377
|
-
_type;
|
|
378
342
|
set type(v) {
|
|
379
343
|
this._type = v;
|
|
380
344
|
this.dataLoaded();
|
|
381
345
|
}
|
|
382
|
-
/**表单实体 */
|
|
383
|
-
_Entity;
|
|
384
346
|
set Entity(v) {
|
|
385
347
|
this._Entity = v;
|
|
386
348
|
this.dataLoaded();
|
|
387
349
|
}
|
|
388
|
-
/**选择的表单信息 */
|
|
389
|
-
_selected;
|
|
390
350
|
set selected(v) {
|
|
391
351
|
this._selected = v ? v : v == false ? v : '';
|
|
392
352
|
this.dataLoaded();
|
|
@@ -394,7 +354,6 @@ class NumbericEditConfigComponent {
|
|
|
394
354
|
get formConfiguration() {
|
|
395
355
|
return this._Entity.get('formConfiguration');
|
|
396
356
|
}
|
|
397
|
-
submitclick;
|
|
398
357
|
async dataLoaded() {
|
|
399
358
|
if (this._Entity && this._type) {
|
|
400
359
|
await this.AfterInit();
|
|
@@ -412,13 +371,13 @@ class NumbericEditConfigComponent {
|
|
|
412
371
|
resolve(true);
|
|
413
372
|
});
|
|
414
373
|
}
|
|
415
|
-
static
|
|
416
|
-
static
|
|
374
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: NumbericEditConfigComponent, deps: [{ token: i1.FormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
375
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: NumbericEditConfigComponent, selector: "df-numberic-edit-config", inputs: { type: "type", Entity: "Entity", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::Placeholder' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"NumericEditField.Placeholder\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::Min' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"NumericEditField.Min\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::Max' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"NumericEditField.Max\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::NumericDecimals' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"NumericEditField.Decimals\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::NumericStep' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"NumericEditField.Step\">\n <div class=\"form-text\">{{'DigniteAbpForms::NumericStepHelp'}}</div>\n </div>\n \n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::FormatSpecifier' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"FormatSpecifier\">\n <div class=\"form-text\">See:<a href=\"https://docs.microsoft.com/zh-cn/dotnet/standard/base-types/standard-numeric-format-strings\" target=\"_blank\">https://docs.microsoft.com/zh-cn/dotnet/standard/base-types/standard-numeric-format-strings</a></div>\n </div>\n \n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\" #submitclick></button>\n </div>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i2.InitDirective, selector: "[abpInit]", outputs: ["abpInit"] }, { kind: "directive", type: i3.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i3.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
417
376
|
}
|
|
418
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: NumbericEditConfigComponent, decorators: [{
|
|
419
378
|
type: Component,
|
|
420
379
|
args: [{ selector: 'df-numberic-edit-config', template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::Placeholder' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"NumericEditField.Placeholder\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::Min' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"NumericEditField.Min\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::Max' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"NumericEditField.Max\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::NumericDecimals' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"NumericEditField.Decimals\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::NumericStep' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"NumericEditField.Step\">\n <div class=\"form-text\">{{'DigniteAbpForms::NumericStepHelp'}}</div>\n </div>\n \n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::FormatSpecifier' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"FormatSpecifier\">\n <div class=\"form-text\">See:<a href=\"https://docs.microsoft.com/zh-cn/dotnet/standard/base-types/standard-numeric-format-strings\" target=\"_blank\">https://docs.microsoft.com/zh-cn/dotnet/standard/base-types/standard-numeric-format-strings</a></div>\n </div>\n \n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\" #submitclick></button>\n </div>\n</form>" }]
|
|
421
|
-
}], ctorParameters:
|
|
380
|
+
}], ctorParameters: () => [{ type: i1.FormBuilder }], propDecorators: { type: [{
|
|
422
381
|
type: Input
|
|
423
382
|
}], Entity: [{
|
|
424
383
|
type: Input
|
|
@@ -442,14 +401,12 @@ function maxDecimalPlacesValidator(maxDecimalPlaces) {
|
|
|
442
401
|
};
|
|
443
402
|
}
|
|
444
403
|
class NumbericEditControlComponent {
|
|
445
|
-
fb;
|
|
446
|
-
cdr;
|
|
447
404
|
constructor(fb, cdr) {
|
|
448
405
|
this.fb = fb;
|
|
449
406
|
this.cdr = cdr;
|
|
407
|
+
/**字段配置列表 */
|
|
408
|
+
this._fields = '';
|
|
450
409
|
}
|
|
451
|
-
/**表单实体 */
|
|
452
|
-
_entity;
|
|
453
410
|
set entity(v) {
|
|
454
411
|
this._entity = v;
|
|
455
412
|
this.dataLoaded();
|
|
@@ -457,25 +414,18 @@ class NumbericEditControlComponent {
|
|
|
457
414
|
get entity() {
|
|
458
415
|
return this._entity;
|
|
459
416
|
}
|
|
460
|
-
/**字段配置列表 */
|
|
461
|
-
_fields = '';
|
|
462
417
|
set fields(v) {
|
|
463
418
|
this._fields = v;
|
|
464
419
|
this.dataLoaded();
|
|
465
420
|
}
|
|
466
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
467
|
-
_parentFiledName;
|
|
468
421
|
set parentFiledName(v) {
|
|
469
422
|
this._parentFiledName = v;
|
|
470
423
|
this.dataLoaded();
|
|
471
424
|
}
|
|
472
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
473
|
-
_selected;
|
|
474
425
|
set selected(v) {
|
|
475
426
|
this._selected = v;
|
|
476
427
|
this.dataLoaded();
|
|
477
428
|
}
|
|
478
|
-
submitclick;
|
|
479
429
|
get extraProperties() {
|
|
480
430
|
return this._entity.get('extraProperties');
|
|
481
431
|
}
|
|
@@ -516,13 +466,13 @@ class NumbericEditControlComponent {
|
|
|
516
466
|
this.fieldInput.patchValue(val.slice(0, val.length - (decimalPart.length - 2)));
|
|
517
467
|
}
|
|
518
468
|
}
|
|
519
|
-
static
|
|
520
|
-
static
|
|
469
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: NumbericEditControlComponent, deps: [{ token: i1.FormBuilder }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
470
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: NumbericEditControlComponent, selector: "df-numberic-edit-control", inputs: { entity: "entity", fields: "fields", parentFiledName: "parentFiledName", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_entity\">\n <div [formGroupName]=\"_parentFiledName\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <input type=\"number\" class=\"form-control\" formControlName=\"{{_fields.field.name}}\"\n [placeholder]=\"_fields.field.formConfiguration['NumericEditField.Placeholder']||''\"\n [min]=\"_fields.field.formConfiguration['NumericEditField.Min']\"\n [max]=\"_fields.field.formConfiguration['NumericEditField.Max']\"\n [step]=\"_fields.field.formConfiguration['NumericEditField.Step']\" (input)=\"inputchange($event)\" />\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n\n </div>\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NumberValueAccessor, selector: "input[type=number][formControlName],input[type=number][formControl],input[type=number][ngModel]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.MinValidator, selector: "input[type=number][min][formControlName],input[type=number][min][formControl],input[type=number][min][ngModel]", inputs: ["min"] }, { kind: "directive", type: i1.MaxValidator, selector: "input[type=number][max][formControlName],input[type=number][max][formControl],input[type=number][max][ngModel]", inputs: ["max"] }, { kind: "directive", type: i2$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i3.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i3.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
521
471
|
}
|
|
522
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: NumbericEditControlComponent, decorators: [{
|
|
523
473
|
type: Component,
|
|
524
474
|
args: [{ selector: 'df-numberic-edit-control', changeDetection: ChangeDetectionStrategy.OnPush, template: "<form [formGroup]=\"_entity\">\n <div [formGroupName]=\"_parentFiledName\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <input type=\"number\" class=\"form-control\" formControlName=\"{{_fields.field.name}}\"\n [placeholder]=\"_fields.field.formConfiguration['NumericEditField.Placeholder']||''\"\n [min]=\"_fields.field.formConfiguration['NumericEditField.Min']\"\n [max]=\"_fields.field.formConfiguration['NumericEditField.Max']\"\n [step]=\"_fields.field.formConfiguration['NumericEditField.Step']\" (input)=\"inputchange($event)\" />\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n\n </div>\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n</form>" }]
|
|
525
|
-
}], ctorParameters:
|
|
475
|
+
}], ctorParameters: () => [{ type: i1.FormBuilder }, { type: i0.ChangeDetectorRef }], propDecorators: { entity: [{
|
|
526
476
|
type: Input
|
|
527
477
|
}], fields: [{
|
|
528
478
|
type: Input
|
|
@@ -536,13 +486,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
536
486
|
}] } });
|
|
537
487
|
|
|
538
488
|
class CkEditorConfig {
|
|
539
|
-
/**文件容器名称 */
|
|
540
|
-
// placeholder: any = new FormControl('', Validators.required);
|
|
541
|
-
'Ckeditor.ImagesContainerName' = ['', []];
|
|
542
|
-
/**多选 */
|
|
543
|
-
// placeholder: any = new FormControl('', Validators.required);
|
|
544
|
-
'Ckeditor.InitialContent' = ['', []];
|
|
545
489
|
constructor(data) {
|
|
490
|
+
/**文件容器名称 */
|
|
491
|
+
// placeholder: any = new FormControl('', Validators.required);
|
|
492
|
+
this['Ckeditor.ImagesContainerName'] = ['', []];
|
|
493
|
+
/**多选 */
|
|
494
|
+
// placeholder: any = new FormControl('', Validators.required);
|
|
495
|
+
this['Ckeditor.InitialContent'] = ['', []];
|
|
546
496
|
if (data) {
|
|
547
497
|
for (const key in data) {
|
|
548
498
|
if (data.hasOwnProperty(key)) {
|
|
@@ -554,20 +504,13 @@ class CkEditorConfig {
|
|
|
554
504
|
}
|
|
555
505
|
|
|
556
506
|
class CkEditorConfigComponent {
|
|
557
|
-
fb;
|
|
558
507
|
constructor(fb) {
|
|
559
508
|
this.fb = fb;
|
|
560
509
|
}
|
|
561
|
-
/**表单实体 */
|
|
562
|
-
Entity;
|
|
563
|
-
/**选择的表单信息 */
|
|
564
|
-
_selected;
|
|
565
510
|
set selected(v) {
|
|
566
511
|
this._selected = v || '';
|
|
567
512
|
this.dataLoaded();
|
|
568
513
|
}
|
|
569
|
-
/**表单控件类型 */
|
|
570
|
-
_type;
|
|
571
514
|
set type(v) {
|
|
572
515
|
this._type = v;
|
|
573
516
|
this.dataLoaded();
|
|
@@ -575,7 +518,6 @@ class CkEditorConfigComponent {
|
|
|
575
518
|
get formConfiguration() {
|
|
576
519
|
return this.Entity.get('formConfiguration');
|
|
577
520
|
}
|
|
578
|
-
submitclick;
|
|
579
521
|
async dataLoaded() {
|
|
580
522
|
// if (this.Entity && (this._selected || this._selected === '')) {
|
|
581
523
|
if (this.Entity && this._type) {
|
|
@@ -594,13 +536,13 @@ class CkEditorConfigComponent {
|
|
|
594
536
|
resolve(true);
|
|
595
537
|
});
|
|
596
538
|
}
|
|
597
|
-
static
|
|
598
|
-
static
|
|
539
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CkEditorConfigComponent, deps: [{ token: i1.FormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
540
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: CkEditorConfigComponent, selector: "df-ck-editor-config", inputs: { Entity: "Entity", selected: "selected", type: "type" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpDynamicFormsCkEditor::ImagesContainerName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"Ckeditor.ImagesContainerName\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpDynamicFormsCkEditor::InitialContent' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"Ckeditor.InitialContent\">\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\"\n #submitclick></button>\n </div>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i2.InitDirective, selector: "[abpInit]", outputs: ["abpInit"] }, { kind: "directive", type: i3.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i3.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
599
541
|
}
|
|
600
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
542
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CkEditorConfigComponent, decorators: [{
|
|
601
543
|
type: Component,
|
|
602
544
|
args: [{ selector: 'df-ck-editor-config', template: "<form [formGroup]=\"Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpDynamicFormsCkEditor::ImagesContainerName' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"Ckeditor.ImagesContainerName\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpDynamicFormsCkEditor::InitialContent' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"Ckeditor.InitialContent\">\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\"\n #submitclick></button>\n </div>\n</form>" }]
|
|
603
|
-
}], ctorParameters:
|
|
545
|
+
}], ctorParameters: () => [{ type: i1.FormBuilder }], propDecorators: { Entity: [{
|
|
604
546
|
type: Input
|
|
605
547
|
}], selected: [{
|
|
606
548
|
type: Input
|
|
@@ -612,12 +554,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
612
554
|
}] } });
|
|
613
555
|
|
|
614
556
|
class isBase64UploadAdapter {
|
|
615
|
-
reader = new FileReader();
|
|
616
|
-
restService;
|
|
617
|
-
loader;
|
|
618
|
-
ImagesContainerName;
|
|
619
|
-
Base64 = false;
|
|
620
557
|
constructor(loader, ImagesContainerName, restService) {
|
|
558
|
+
this.reader = new FileReader();
|
|
559
|
+
this.Base64 = false;
|
|
560
|
+
this.createFile = (input, config) => this.restService.request({
|
|
561
|
+
method: 'POST',
|
|
562
|
+
url: '/api/file-explorer/files',
|
|
563
|
+
params: { containerName: input.containerName, cellName: input.cellName, directoryId: input.directoryId, entityId: input.entityId },
|
|
564
|
+
body: input.file,
|
|
565
|
+
}, { apiName: 'FileExplorer', ...config });
|
|
621
566
|
this.loader = loader;
|
|
622
567
|
this.ImagesContainerName = ImagesContainerName;
|
|
623
568
|
this.restService = restService;
|
|
@@ -657,44 +602,40 @@ class isBase64UploadAdapter {
|
|
|
657
602
|
}
|
|
658
603
|
});
|
|
659
604
|
}
|
|
660
|
-
createFile = (input, config) => this.restService.request({
|
|
661
|
-
method: 'POST',
|
|
662
|
-
url: '/api/file-explorer/files',
|
|
663
|
-
params: { containerName: input.containerName, cellName: input.cellName, directoryId: input.directoryId, entityId: input.entityId },
|
|
664
|
-
body: input.file,
|
|
665
|
-
}, { apiName: 'FileExplorer', ...config });
|
|
666
605
|
}
|
|
667
606
|
|
|
668
607
|
class CkEditorControlComponent {
|
|
669
|
-
renderer;
|
|
670
|
-
document;
|
|
671
|
-
_restService = inject(RestService);
|
|
672
|
-
config = inject(ConfigStateService);
|
|
673
|
-
languagesMap = {
|
|
674
|
-
ar: 'ar',
|
|
675
|
-
cs: 'cs',
|
|
676
|
-
en: 'en',
|
|
677
|
-
hi: 'hi',
|
|
678
|
-
fi: 'fi',
|
|
679
|
-
hu: 'hu',
|
|
680
|
-
fr: 'fr',
|
|
681
|
-
it: 'it',
|
|
682
|
-
'en-GB': 'en-gb',
|
|
683
|
-
'pt-BR': 'pt-br',
|
|
684
|
-
'zh-Hant': 'zh',
|
|
685
|
-
'zh-Hans': 'zh-cn',
|
|
686
|
-
tr: 'tr',
|
|
687
|
-
sk: 'sk',
|
|
688
|
-
'de-DE': 'de',
|
|
689
|
-
es: 'es',
|
|
690
|
-
ja: 'ja',
|
|
691
|
-
vi: 'vi',
|
|
692
|
-
};
|
|
693
|
-
ckeditor;
|
|
694
|
-
Editor;
|
|
695
608
|
constructor(renderer, document) {
|
|
696
609
|
this.renderer = renderer;
|
|
697
610
|
this.document = document;
|
|
611
|
+
this._restService = inject(RestService);
|
|
612
|
+
this.config = inject(ConfigStateService);
|
|
613
|
+
this.languagesMap = {
|
|
614
|
+
ar: 'ar',
|
|
615
|
+
cs: 'cs',
|
|
616
|
+
en: 'en',
|
|
617
|
+
hi: 'hi',
|
|
618
|
+
fi: 'fi',
|
|
619
|
+
hu: 'hu',
|
|
620
|
+
fr: 'fr',
|
|
621
|
+
it: 'it',
|
|
622
|
+
'en-GB': 'en-gb',
|
|
623
|
+
'pt-BR': 'pt-br',
|
|
624
|
+
'zh-Hant': 'zh',
|
|
625
|
+
'zh-Hans': 'zh-cn',
|
|
626
|
+
tr: 'tr',
|
|
627
|
+
sk: 'sk',
|
|
628
|
+
'de-DE': 'de',
|
|
629
|
+
es: 'es',
|
|
630
|
+
ja: 'ja',
|
|
631
|
+
vi: 'vi',
|
|
632
|
+
};
|
|
633
|
+
this.fb = inject(FormBuilder);
|
|
634
|
+
/**字段配置列表 */
|
|
635
|
+
this._fields = '';
|
|
636
|
+
this.invalidfeedback = false;
|
|
637
|
+
/**图片容器名称 */
|
|
638
|
+
this.imagesContainerName = 111;
|
|
698
639
|
this.addScript('https://cdn.ckeditor.com/ckeditor5/41.4.1/classic/ckeditor.js');
|
|
699
640
|
}
|
|
700
641
|
addScript(url) {
|
|
@@ -706,7 +647,6 @@ class CkEditorControlComponent {
|
|
|
706
647
|
};
|
|
707
648
|
this.renderer.appendChild(this.document.head, script);
|
|
708
649
|
}
|
|
709
|
-
ClassicEditor_view;
|
|
710
650
|
// 初始化富文本
|
|
711
651
|
_init_Editor() {
|
|
712
652
|
const currentCulture = this.config.getOne("localization")?.currentCulture?.name;
|
|
@@ -773,32 +713,22 @@ class CkEditorControlComponent {
|
|
|
773
713
|
console.log(err);
|
|
774
714
|
});
|
|
775
715
|
}
|
|
776
|
-
fb = inject(FormBuilder);
|
|
777
|
-
/**表单实体 */
|
|
778
|
-
_entity;
|
|
779
716
|
set entity(v) {
|
|
780
717
|
this._entity = v;
|
|
781
718
|
this.dataLoaded();
|
|
782
719
|
}
|
|
783
|
-
/**字段配置列表 */
|
|
784
|
-
_fields = '';
|
|
785
720
|
set fields(v) {
|
|
786
721
|
this._fields = v;
|
|
787
722
|
this.dataLoaded();
|
|
788
723
|
}
|
|
789
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
790
|
-
_parentFiledName;
|
|
791
724
|
set parentFiledName(v) {
|
|
792
725
|
this._parentFiledName = v;
|
|
793
726
|
this.dataLoaded();
|
|
794
727
|
}
|
|
795
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
796
|
-
_selected;
|
|
797
728
|
set selected(v) {
|
|
798
729
|
this._selected = v;
|
|
799
730
|
this.dataLoaded();
|
|
800
731
|
}
|
|
801
|
-
submitclick;
|
|
802
732
|
get extraProperties() {
|
|
803
733
|
return this._entity.get('extraProperties');
|
|
804
734
|
}
|
|
@@ -815,14 +745,11 @@ class CkEditorControlComponent {
|
|
|
815
745
|
this.submitclick.nativeElement.click();
|
|
816
746
|
}
|
|
817
747
|
}
|
|
818
|
-
invalidfeedback = false;
|
|
819
748
|
//设置值
|
|
820
749
|
setckeditorInput(val) {
|
|
821
750
|
this.invalidfeedback = true;
|
|
822
751
|
this.ckeditorInput.patchValue(val);
|
|
823
752
|
}
|
|
824
|
-
/**图片容器名称 */
|
|
825
|
-
imagesContainerName = 111;
|
|
826
753
|
AfterInit() {
|
|
827
754
|
return new Promise((resolve) => {
|
|
828
755
|
let ValidatorsArray = [];
|
|
@@ -835,16 +762,16 @@ class CkEditorControlComponent {
|
|
|
835
762
|
resolve(true);
|
|
836
763
|
});
|
|
837
764
|
}
|
|
838
|
-
static
|
|
839
|
-
static
|
|
765
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CkEditorControlComponent, deps: [{ token: i0.Renderer2 }, { token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
766
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: CkEditorControlComponent, selector: "df-ck-editor-control", inputs: { entity: "entity", fields: "fields", parentFiledName: "parentFiledName", selected: "selected" }, viewQueries: [{ propertyName: "ckeditor", first: true, predicate: ["ckeditor"], descendants: true, static: true }, { propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_entity\">\n <div formGroupName=\"extraProperties\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <div #ckeditor id=\"ckeditor\"></div>\n <ng-container *ngIf=\"ckeditorInput?.errors?.required&&invalidfeedback\">\n <div class=\"text-danger \">\n {{'DigniteAbpForms::Validate:Required' | abpLocalization:' '}}\n </div>\n </ng-container>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n </div>\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i3.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
840
767
|
}
|
|
841
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
768
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: CkEditorControlComponent, decorators: [{
|
|
842
769
|
type: Component,
|
|
843
770
|
args: [{ selector: 'df-ck-editor-control', template: "<form [formGroup]=\"_entity\">\n <div formGroupName=\"extraProperties\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <div #ckeditor id=\"ckeditor\"></div>\n <ng-container *ngIf=\"ckeditorInput?.errors?.required&&invalidfeedback\">\n <div class=\"text-danger \">\n {{'DigniteAbpForms::Validate:Required' | abpLocalization:' '}}\n </div>\n </ng-container>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n </div>\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n</form>" }]
|
|
844
|
-
}], ctorParameters:
|
|
771
|
+
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: Document, decorators: [{
|
|
845
772
|
type: Inject,
|
|
846
773
|
args: [DOCUMENT]
|
|
847
|
-
}] }]
|
|
774
|
+
}] }], propDecorators: { ckeditor: [{
|
|
848
775
|
type: ViewChild,
|
|
849
776
|
args: ['ckeditor', { static: true }]
|
|
850
777
|
}], entity: [{
|
|
@@ -877,13 +804,13 @@ var DateEditInterfaces;
|
|
|
877
804
|
})(DateEditInterfaces || (DateEditInterfaces = {}));
|
|
878
805
|
|
|
879
806
|
class DateEditConfig {
|
|
880
|
-
/**日期格式 */
|
|
881
|
-
'DateEdit.InputMode' = [DateEditInterfaces.Date, []];
|
|
882
|
-
/**最小值 */
|
|
883
|
-
'DateEdit.Min' = ['', []];
|
|
884
|
-
/**最大值 */
|
|
885
|
-
'DateEdit.Max' = ['', []];
|
|
886
807
|
constructor(data) {
|
|
808
|
+
/**日期格式 */
|
|
809
|
+
this['DateEdit.InputMode'] = [DateEditInterfaces.Date, []];
|
|
810
|
+
/**最小值 */
|
|
811
|
+
this['DateEdit.Min'] = ['', []];
|
|
812
|
+
/**最大值 */
|
|
813
|
+
this['DateEdit.Max'] = ['', []];
|
|
887
814
|
if (data) {
|
|
888
815
|
for (const key in data) {
|
|
889
816
|
if (data.hasOwnProperty(key)) {
|
|
@@ -895,25 +822,18 @@ class DateEditConfig {
|
|
|
895
822
|
}
|
|
896
823
|
|
|
897
824
|
class DateEditConfigComponent {
|
|
898
|
-
fb;
|
|
899
825
|
constructor(fb) {
|
|
900
826
|
this.fb = fb;
|
|
827
|
+
this._DateEditInterfaces = DateEditInterfaces;
|
|
901
828
|
}
|
|
902
|
-
_DateEditInterfaces = DateEditInterfaces;
|
|
903
|
-
/**表单控件类型 */
|
|
904
|
-
_type;
|
|
905
829
|
set type(v) {
|
|
906
830
|
this._type = v;
|
|
907
831
|
this.dataLoaded();
|
|
908
832
|
}
|
|
909
|
-
/**表单实体 */
|
|
910
|
-
_Entity;
|
|
911
833
|
set Entity(v) {
|
|
912
834
|
this._Entity = v;
|
|
913
835
|
this.dataLoaded();
|
|
914
836
|
}
|
|
915
|
-
/**选择的表单信息 */
|
|
916
|
-
_selected;
|
|
917
837
|
set selected(v) {
|
|
918
838
|
this._selected = v;
|
|
919
839
|
this.dataLoaded();
|
|
@@ -921,7 +841,6 @@ class DateEditConfigComponent {
|
|
|
921
841
|
get formConfiguration() {
|
|
922
842
|
return this._Entity.get('formConfiguration');
|
|
923
843
|
}
|
|
924
|
-
submitclick;
|
|
925
844
|
async dataLoaded() {
|
|
926
845
|
if (this._Entity && this._type) {
|
|
927
846
|
await this.AfterInit();
|
|
@@ -939,13 +858,13 @@ class DateEditConfigComponent {
|
|
|
939
858
|
resolve(true);
|
|
940
859
|
});
|
|
941
860
|
}
|
|
942
|
-
static
|
|
943
|
-
static
|
|
861
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: DateEditConfigComponent, deps: [{ token: i1.FormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
862
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: DateEditConfigComponent, selector: "df-date-edit-config", inputs: { type: "type", Entity: "Entity", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::DateEditMode' | abpLocalization}}</label>\n <div>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"_DateEditInterfaces.Date\"\n formControlName=\"DateEdit.InputMode\" id=\"flexRadioDefault1\">\n <label class=\"form-check-label\" for=\"flexRadioDefault1\">\n {{'DigniteAbpForms::Date' | abpLocalization}}\n </label>\n </div>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"_DateEditInterfaces.DateTime\"\n formControlName=\"DateEdit.InputMode\" id=\"flexRadioDefault2\">\n <label class=\"form-check-label\" for=\"flexRadioDefault2\">\n {{'DigniteAbpForms::DateTime' | abpLocalization}}\n </label>\n </div>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"_DateEditInterfaces.Month\"\n formControlName=\"DateEdit.InputMode\" id=\"flexRadioDefault3\">\n <label class=\"form-check-label\" for=\"flexRadioDefault3\">\n {{'DigniteAbpForms::Month' | abpLocalization}}\n </label>\n </div>\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::Min' | abpLocalization}}</label>\n <input type=\"datetime-local\" class=\"form-control\" step=\"1\" formControlName=\"DateEdit.Min\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::Max' | abpLocalization}}</label>\n <input type=\"datetime-local\" class=\"form-control\" step=\"1\" formControlName=\"DateEdit.Max\">\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\"\n #submitclick></button>\n </div>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.RadioControlValueAccessor, selector: "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]", inputs: ["name", "formControlName", "value"] }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i2.InitDirective, selector: "[abpInit]", outputs: ["abpInit"] }, { kind: "directive", type: i3.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i3.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
944
863
|
}
|
|
945
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
864
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: DateEditConfigComponent, decorators: [{
|
|
946
865
|
type: Component,
|
|
947
866
|
args: [{ selector: 'df-date-edit-config', template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::DateEditMode' | abpLocalization}}</label>\n <div>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"_DateEditInterfaces.Date\"\n formControlName=\"DateEdit.InputMode\" id=\"flexRadioDefault1\">\n <label class=\"form-check-label\" for=\"flexRadioDefault1\">\n {{'DigniteAbpForms::Date' | abpLocalization}}\n </label>\n </div>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"_DateEditInterfaces.DateTime\"\n formControlName=\"DateEdit.InputMode\" id=\"flexRadioDefault2\">\n <label class=\"form-check-label\" for=\"flexRadioDefault2\">\n {{'DigniteAbpForms::DateTime' | abpLocalization}}\n </label>\n </div>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"radio\" [value]=\"_DateEditInterfaces.Month\"\n formControlName=\"DateEdit.InputMode\" id=\"flexRadioDefault3\">\n <label class=\"form-check-label\" for=\"flexRadioDefault3\">\n {{'DigniteAbpForms::Month' | abpLocalization}}\n </label>\n </div>\n </div>\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::Min' | abpLocalization}}</label>\n <input type=\"datetime-local\" class=\"form-control\" step=\"1\" formControlName=\"DateEdit.Min\">\n </div>\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::Max' | abpLocalization}}</label>\n <input type=\"datetime-local\" class=\"form-control\" step=\"1\" formControlName=\"DateEdit.Max\">\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\"\n #submitclick></button>\n </div>\n</form>" }]
|
|
948
|
-
}], ctorParameters:
|
|
867
|
+
}], ctorParameters: () => [{ type: i1.FormBuilder }], propDecorators: { type: [{
|
|
949
868
|
type: Input
|
|
950
869
|
}], Entity: [{
|
|
951
870
|
type: Input
|
|
@@ -957,15 +876,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
957
876
|
}] } });
|
|
958
877
|
|
|
959
878
|
class DateEditControlComponent {
|
|
960
|
-
fb;
|
|
961
|
-
cdr;
|
|
962
879
|
constructor(fb, cdr) {
|
|
963
880
|
this.fb = fb;
|
|
964
881
|
this.cdr = cdr;
|
|
882
|
+
this._DateEditInterfaces = DateEditInterfaces;
|
|
883
|
+
/**字段配置列表 */
|
|
884
|
+
this._fields = '';
|
|
965
885
|
}
|
|
966
|
-
_DateEditInterfaces = DateEditInterfaces;
|
|
967
|
-
/**表单实体 */
|
|
968
|
-
_entity;
|
|
969
886
|
set entity(v) {
|
|
970
887
|
this._entity = v;
|
|
971
888
|
this.dataLoaded();
|
|
@@ -973,25 +890,18 @@ class DateEditControlComponent {
|
|
|
973
890
|
get entity() {
|
|
974
891
|
return this._entity;
|
|
975
892
|
}
|
|
976
|
-
/**字段配置列表 */
|
|
977
|
-
_fields = '';
|
|
978
893
|
set fields(v) {
|
|
979
894
|
this._fields = v;
|
|
980
895
|
this.dataLoaded();
|
|
981
896
|
}
|
|
982
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
983
|
-
_parentFiledName;
|
|
984
897
|
set parentFiledName(v) {
|
|
985
898
|
this._parentFiledName = v;
|
|
986
899
|
this.dataLoaded();
|
|
987
900
|
}
|
|
988
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
989
|
-
_selected;
|
|
990
901
|
set selected(v) {
|
|
991
902
|
this._selected = v;
|
|
992
903
|
this.dataLoaded();
|
|
993
904
|
}
|
|
994
|
-
submitclick;
|
|
995
905
|
get extraProperties() {
|
|
996
906
|
return this._entity.get('extraProperties');
|
|
997
907
|
}
|
|
@@ -1022,13 +932,13 @@ class DateEditControlComponent {
|
|
|
1022
932
|
resolve(true);
|
|
1023
933
|
});
|
|
1024
934
|
}
|
|
1025
|
-
static
|
|
1026
|
-
static
|
|
935
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: DateEditControlComponent, deps: [{ token: i1.FormBuilder }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
936
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: DateEditControlComponent, selector: "df-date-edit-control", inputs: { entity: "entity", fields: "fields", parentFiledName: "parentFiledName", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_entity\">\n <div [formGroupName]=\"_parentFiledName\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n\n <ng-container *ngIf=\"_fields.field.formConfiguration['DateEdit.InputMode'] === _DateEditInterfaces.Date\">\n <input type=\"date\" class=\"form-control\" step=\"1\" formControlName=\"{{_fields.field.name}}\"\n [min]=\"_fields.field.formConfiguration['DateEdit.Min']\"\n [max]=\"_fields.field.formConfiguration['DateEdit.Max']\" />\n </ng-container>\n <ng-container\n *ngIf=\"_fields.field.formConfiguration['DateEdit.InputMode'] === _DateEditInterfaces.DateTime\">\n <input type=\"datetime-local\" class=\"form-control\" step=\"1\" formControlName=\"{{_fields.field.name}}\"\n [min]=\"_fields.field.formConfiguration['DateEdit.Min']\"\n [max]=\"_fields.field.formConfiguration['DateEdit.Max']\" />\n </ng-container>\n <ng-container *ngIf=\"_fields.field.formConfiguration['DateEdit.InputMode'] === _DateEditInterfaces.Month\">\n <input type=\"month\" class=\"form-control\" step=\"1\" formControlName=\"{{_fields.field.name}}\"\n [min]=\"_fields.field.formConfiguration['DateEdit.Min']\"\n [max]=\"_fields.field.formConfiguration['DateEdit.Max']\" />\n </ng-container>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n </div>\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i3.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i3.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }] }); }
|
|
1027
937
|
}
|
|
1028
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
938
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: DateEditControlComponent, decorators: [{
|
|
1029
939
|
type: Component,
|
|
1030
940
|
args: [{ selector: 'df-date-edit-control', template: "<form [formGroup]=\"_entity\">\n <div [formGroupName]=\"_parentFiledName\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n\n <ng-container *ngIf=\"_fields.field.formConfiguration['DateEdit.InputMode'] === _DateEditInterfaces.Date\">\n <input type=\"date\" class=\"form-control\" step=\"1\" formControlName=\"{{_fields.field.name}}\"\n [min]=\"_fields.field.formConfiguration['DateEdit.Min']\"\n [max]=\"_fields.field.formConfiguration['DateEdit.Max']\" />\n </ng-container>\n <ng-container\n *ngIf=\"_fields.field.formConfiguration['DateEdit.InputMode'] === _DateEditInterfaces.DateTime\">\n <input type=\"datetime-local\" class=\"form-control\" step=\"1\" formControlName=\"{{_fields.field.name}}\"\n [min]=\"_fields.field.formConfiguration['DateEdit.Min']\"\n [max]=\"_fields.field.formConfiguration['DateEdit.Max']\" />\n </ng-container>\n <ng-container *ngIf=\"_fields.field.formConfiguration['DateEdit.InputMode'] === _DateEditInterfaces.Month\">\n <input type=\"month\" class=\"form-control\" step=\"1\" formControlName=\"{{_fields.field.name}}\"\n [min]=\"_fields.field.formConfiguration['DateEdit.Min']\"\n [max]=\"_fields.field.formConfiguration['DateEdit.Max']\" />\n </ng-container>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n </div>\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n</form>" }]
|
|
1031
|
-
}], ctorParameters:
|
|
941
|
+
}], ctorParameters: () => [{ type: i1.FormBuilder }, { type: i0.ChangeDetectorRef }], propDecorators: { entity: [{
|
|
1032
942
|
type: Input
|
|
1033
943
|
}], fields: [{
|
|
1034
944
|
type: Input
|
|
@@ -1042,13 +952,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1042
952
|
}] } });
|
|
1043
953
|
|
|
1044
954
|
class SelectConfig {
|
|
1045
|
-
/**空值文本 */
|
|
1046
|
-
'Select.NullText' = ['', []];
|
|
1047
|
-
//多选
|
|
1048
|
-
'Select.Multiple' = [false, []];
|
|
1049
|
-
// 选项
|
|
1050
|
-
'Select.Options' = new FormArray([]);
|
|
1051
955
|
constructor(data) {
|
|
956
|
+
/**空值文本 */
|
|
957
|
+
this['Select.NullText'] = ['', []];
|
|
958
|
+
//多选
|
|
959
|
+
this['Select.Multiple'] = [false, []];
|
|
960
|
+
// 选项
|
|
961
|
+
this['Select.Options'] = new FormArray([]);
|
|
1052
962
|
if (data) {
|
|
1053
963
|
for (const key in data) {
|
|
1054
964
|
if (data.hasOwnProperty(key)) {
|
|
@@ -1128,37 +1038,29 @@ class DfApiService {
|
|
|
1128
1038
|
}
|
|
1129
1039
|
return result;
|
|
1130
1040
|
}
|
|
1131
|
-
static
|
|
1132
|
-
static
|
|
1041
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: DfApiService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1042
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: DfApiService, providedIn: 'root' }); }
|
|
1133
1043
|
}
|
|
1134
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: DfApiService, decorators: [{
|
|
1135
1045
|
type: Injectable,
|
|
1136
1046
|
args: [{
|
|
1137
1047
|
providedIn: 'root'
|
|
1138
1048
|
}]
|
|
1139
|
-
}], ctorParameters:
|
|
1049
|
+
}], ctorParameters: () => [] });
|
|
1140
1050
|
|
|
1141
1051
|
class SelectConfigComponent {
|
|
1142
|
-
fb;
|
|
1143
|
-
_DfApiService;
|
|
1144
1052
|
constructor(fb, _DfApiService) {
|
|
1145
1053
|
this.fb = fb;
|
|
1146
1054
|
this._DfApiService = _DfApiService;
|
|
1147
1055
|
}
|
|
1148
|
-
/**表单控件类型 */
|
|
1149
|
-
_type;
|
|
1150
1056
|
set type(v) {
|
|
1151
1057
|
this._type = v;
|
|
1152
1058
|
this.dataLoaded();
|
|
1153
1059
|
}
|
|
1154
|
-
/**表单实体 */
|
|
1155
|
-
_Entity;
|
|
1156
1060
|
set Entity(v) {
|
|
1157
1061
|
this._Entity = v;
|
|
1158
1062
|
this.dataLoaded();
|
|
1159
1063
|
}
|
|
1160
|
-
/**选择的表单信息 */
|
|
1161
|
-
_selected;
|
|
1162
1064
|
set selected(v) {
|
|
1163
1065
|
this._selected = v;
|
|
1164
1066
|
this.dataLoaded();
|
|
@@ -1169,7 +1071,6 @@ class SelectConfigComponent {
|
|
|
1169
1071
|
get SelectOptions() {
|
|
1170
1072
|
return this.formConfiguration.controls['Select.Options'];
|
|
1171
1073
|
}
|
|
1172
|
-
submitclick;
|
|
1173
1074
|
async dataLoaded() {
|
|
1174
1075
|
if (this._Entity && this._type) {
|
|
1175
1076
|
await this.AfterInit();
|
|
@@ -1214,13 +1115,13 @@ class SelectConfigComponent {
|
|
|
1214
1115
|
Value: this._DfApiService.chineseToPinyin(value)
|
|
1215
1116
|
});
|
|
1216
1117
|
}
|
|
1217
|
-
static
|
|
1218
|
-
static
|
|
1118
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SelectConfigComponent, deps: [{ token: i1.FormBuilder }, { token: DfApiService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1119
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: SelectConfigComponent, selector: "df-select-config", inputs: { type: "type", Entity: "Entity", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::SelectListItem' | abpLocalization}}</label>\n <table class=\"table\">\n <thead>\n <tr>\n <th scope=\"col\">{{'DigniteAbpForms::SelectListItemText' | abpLocalization}}</th>\n <th scope=\"col\">{{'DigniteAbpForms::SelectListItemValue' | abpLocalization}}</th>\n <th scope=\"col\">{{'DigniteAbpForms::SelectListItemValue' | abpLocalization}}</th>\n <th scope=\"col\" style=\"width: 1%;\">\n <button class=\"btn btn-light btn-sm\" (click.stop)=\"addSelectOptions()\">\n <i class=\"fas fa-plus-circle\"></i>\n </button>\n </th>\n </tr>\n </thead>\n <tbody formArrayName=\"Select.Options\">\n <ng-container *ngFor=\"let item of SelectOptions.controls;let i=index\">\n <tr [formGroupName]=\"i\">\n <td><input type=\"text\" class=\"form-control\" formControlName=\"Text\" (change)=\"textChange($event,i)\"></td>\n <td><input type=\"text\" class=\"form-control\" formControlName=\"Value\"></td>\n <td>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" formControlName=\"Selected\" id=\"selected\">\n </div>\n </td>\n <td scope=\"row\" style=\"width: 1%;\">\n <button class=\"btn btn-light btn-sm\" (click.stop)=\"deleteSelectOptions(i)\">\n <i class=\"fas fa-minus\"></i>\n </button>\n </td>\n </tr> \n </ng-container>\n \n \n </tbody>\n </table>\n </div>\n\n\n\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::NullText' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"Select.NullText\">\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" formControlName=\"Select.Multiple\"\n id=\"Multiple\">\n <label class=\"form-check-label\" for=\"Multiple\">\n {{'DigniteAbpForms::Multiple' | abpLocalization}}\n </label>\n </div>\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\"\n #submitclick></button>\n </div>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i1.FormArrayName, selector: "[formArrayName]", inputs: ["formArrayName"] }, { kind: "directive", type: i2.InitDirective, selector: "[abpInit]", outputs: ["abpInit"] }, { kind: "directive", type: i2.StopPropagationDirective, selector: "[click.stop]", outputs: ["click.stop"] }, { kind: "directive", type: i3.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i3.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }, { kind: "pipe", type: i2.LocalizationPipe, name: "abpLocalization" }] }); }
|
|
1219
1120
|
}
|
|
1220
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SelectConfigComponent, decorators: [{
|
|
1221
1122
|
type: Component,
|
|
1222
1123
|
args: [{ selector: 'df-select-config', template: "<form [formGroup]=\"_Entity\">\n <div formGroupName=\"formConfiguration\">\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::SelectListItem' | abpLocalization}}</label>\n <table class=\"table\">\n <thead>\n <tr>\n <th scope=\"col\">{{'DigniteAbpForms::SelectListItemText' | abpLocalization}}</th>\n <th scope=\"col\">{{'DigniteAbpForms::SelectListItemValue' | abpLocalization}}</th>\n <th scope=\"col\">{{'DigniteAbpForms::SelectListItemValue' | abpLocalization}}</th>\n <th scope=\"col\" style=\"width: 1%;\">\n <button class=\"btn btn-light btn-sm\" (click.stop)=\"addSelectOptions()\">\n <i class=\"fas fa-plus-circle\"></i>\n </button>\n </th>\n </tr>\n </thead>\n <tbody formArrayName=\"Select.Options\">\n <ng-container *ngFor=\"let item of SelectOptions.controls;let i=index\">\n <tr [formGroupName]=\"i\">\n <td><input type=\"text\" class=\"form-control\" formControlName=\"Text\" (change)=\"textChange($event,i)\"></td>\n <td><input type=\"text\" class=\"form-control\" formControlName=\"Value\"></td>\n <td>\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" formControlName=\"Selected\" id=\"selected\">\n </div>\n </td>\n <td scope=\"row\" style=\"width: 1%;\">\n <button class=\"btn btn-light btn-sm\" (click.stop)=\"deleteSelectOptions(i)\">\n <i class=\"fas fa-minus\"></i>\n </button>\n </td>\n </tr> \n </ng-container>\n \n \n </tbody>\n </table>\n </div>\n\n\n\n <div class=\"mb-2\">\n <label class=\"form-label\">{{'DigniteAbpForms::NullText' | abpLocalization}}</label>\n <input type=\"text\" class=\"form-control\" formControlName=\"Select.NullText\">\n </div>\n <div class=\"mb-2\">\n <div class=\"form-check form-check-inline\">\n <input class=\"form-check-input\" type=\"checkbox\" formControlName=\"Select.Multiple\"\n id=\"Multiple\">\n <label class=\"form-check-label\" for=\"Multiple\">\n {{'DigniteAbpForms::Multiple' | abpLocalization}}\n </label>\n </div>\n </div>\n <button type=\"submit\" (abpInit)=\"submitclick?.nativeElement?.click()\" style=\"display: none;\"\n #submitclick></button>\n </div>\n</form>" }]
|
|
1223
|
-
}], ctorParameters:
|
|
1124
|
+
}], ctorParameters: () => [{ type: i1.FormBuilder }, { type: DfApiService }], propDecorators: { type: [{
|
|
1224
1125
|
type: Input
|
|
1225
1126
|
}], Entity: [{
|
|
1226
1127
|
type: Input
|
|
@@ -1232,35 +1133,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1232
1133
|
}] } });
|
|
1233
1134
|
|
|
1234
1135
|
class SelectControlComponent {
|
|
1235
|
-
fb;
|
|
1236
1136
|
constructor(fb) {
|
|
1237
1137
|
this.fb = fb;
|
|
1138
|
+
/**字段配置列表 */
|
|
1139
|
+
this._fields = '';
|
|
1140
|
+
this.formConfiguration = '';
|
|
1238
1141
|
}
|
|
1239
|
-
/**表单实体 */
|
|
1240
|
-
_entity;
|
|
1241
1142
|
set entity(v) {
|
|
1242
1143
|
this._entity = v;
|
|
1243
1144
|
this.dataLoaded();
|
|
1244
1145
|
}
|
|
1245
|
-
/**字段配置列表 */
|
|
1246
|
-
_fields = '';
|
|
1247
1146
|
set fields(v) {
|
|
1248
1147
|
this._fields = v;
|
|
1249
1148
|
this.dataLoaded();
|
|
1250
1149
|
}
|
|
1251
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
1252
|
-
_parentFiledName;
|
|
1253
1150
|
set parentFiledName(v) {
|
|
1254
1151
|
this._parentFiledName = v;
|
|
1255
1152
|
this.dataLoaded();
|
|
1256
1153
|
}
|
|
1257
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
1258
|
-
_selected;
|
|
1259
1154
|
set selected(v) {
|
|
1260
1155
|
this._selected = v;
|
|
1261
1156
|
this.dataLoaded();
|
|
1262
1157
|
}
|
|
1263
|
-
submitclick;
|
|
1264
1158
|
get extraProperties() {
|
|
1265
1159
|
return this._entity.get('extraProperties');
|
|
1266
1160
|
}
|
|
@@ -1271,7 +1165,6 @@ class SelectControlComponent {
|
|
|
1271
1165
|
this.submitclick.nativeElement.click();
|
|
1272
1166
|
}
|
|
1273
1167
|
}
|
|
1274
|
-
formConfiguration = '';
|
|
1275
1168
|
AfterInit() {
|
|
1276
1169
|
return new Promise((resolve, rejects) => {
|
|
1277
1170
|
let ValidatorsArray = [];
|
|
@@ -1294,13 +1187,13 @@ class SelectControlComponent {
|
|
|
1294
1187
|
resolve(true);
|
|
1295
1188
|
});
|
|
1296
1189
|
}
|
|
1297
|
-
static
|
|
1298
|
-
static
|
|
1190
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SelectControlComponent, deps: [{ token: i1.FormBuilder }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1191
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: SelectControlComponent, selector: "df-select-control", inputs: { entity: "entity", fields: "fields", parentFiledName: "parentFiledName", selected: "selected" }, viewQueries: [{ propertyName: "submitclick", first: true, predicate: ["submitclick"], descendants: true, static: true }], ngImport: i0, template: "<form [formGroup]=\"_entity\">\n <div formGroupName=\"extraProperties\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <ng-container *ngIf=\"formConfiguration['Select.Multiple']; else elseTemplate\">\n <select class=\"form-select\" multiple formControlName=\"{{_fields.field.name}}\">\n <ng-container *ngFor=\"let item of _fields.field.formConfiguration['Select.Options'];let i =index\">\n <option [value]=\"item.value\">{{item.text}}</option>\n </ng-container>\n </select>\n </ng-container>\n <ng-template #elseTemplate>\n <select class=\"form-select\" [multiple]=\"false\"\n formControlName=\"{{_fields.field.name}}\">\n <option>{{formConfiguration['Select.NullText']}}</option>\n <ng-container *ngFor=\"let item of formConfiguration['Select.Options'];let i =index\">\n <option [value]=\"item.Value\" >{{item.Text}}</option>\n </ng-container>\n </select>\n </ng-template>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n\n </div>\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n</form>", styles: [""], dependencies: [{ kind: "directive", type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1.SelectMultipleControlValueAccessor, selector: "select[multiple][formControlName],select[multiple][formControl],select[multiple][ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i1.FormGroupName, selector: "[formGroupName]", inputs: ["formGroupName"] }, { kind: "directive", type: i3.ValidationGroupDirective, selector: "[formGroup],[formGroupName]", exportAs: ["validationGroup"] }, { kind: "directive", type: i3.ValidationDirective, selector: "[formControl],[formControlName]", exportAs: ["validationDirective"] }] }); }
|
|
1299
1192
|
}
|
|
1300
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1193
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: SelectControlComponent, decorators: [{
|
|
1301
1194
|
type: Component,
|
|
1302
1195
|
args: [{ selector: 'df-select-control', template: "<form [formGroup]=\"_entity\">\n <div formGroupName=\"extraProperties\">\n <div class=\"mb-2\">\n <label class=\"form-label\" *ngIf=\"_fields.displayName\">{{ _fields.displayName }}</label>\n <ng-container *ngIf=\"formConfiguration['Select.Multiple']; else elseTemplate\">\n <select class=\"form-select\" multiple formControlName=\"{{_fields.field.name}}\">\n <ng-container *ngFor=\"let item of _fields.field.formConfiguration['Select.Options'];let i =index\">\n <option [value]=\"item.value\">{{item.text}}</option>\n </ng-container>\n </select>\n </ng-container>\n <ng-template #elseTemplate>\n <select class=\"form-select\" [multiple]=\"false\"\n formControlName=\"{{_fields.field.name}}\">\n <option>{{formConfiguration['Select.NullText']}}</option>\n <ng-container *ngFor=\"let item of formConfiguration['Select.Options'];let i =index\">\n <option [value]=\"item.Value\" >{{item.Text}}</option>\n </ng-container>\n </select>\n </ng-template>\n <div class=\"form-text\" *ngIf=\"_fields.field.description\">{{_fields.field.description}}</div>\n </div>\n\n </div>\n <button type=\"submit\" style=\"display: none;\" #submitclick></button>\n</form>" }]
|
|
1303
|
-
}], ctorParameters:
|
|
1196
|
+
}], ctorParameters: () => [{ type: i1.FormBuilder }], propDecorators: { entity: [{
|
|
1304
1197
|
type: Input
|
|
1305
1198
|
}], fields: [{
|
|
1306
1199
|
type: Input
|
|
@@ -1365,55 +1258,43 @@ function AddFieldControlGroup(array = []) {
|
|
|
1365
1258
|
}
|
|
1366
1259
|
|
|
1367
1260
|
class DynamicComponent {
|
|
1368
|
-
|
|
1369
|
-
|
|
1261
|
+
constructor() {
|
|
1262
|
+
/**字段配置列表 */
|
|
1263
|
+
this._fields = '';
|
|
1264
|
+
/**表单控件组 */
|
|
1265
|
+
this._fieldControlGroup = FieldControlGroup;
|
|
1266
|
+
}
|
|
1370
1267
|
set selected(v) {
|
|
1371
1268
|
this._selected = v || '';
|
|
1372
1269
|
if (v)
|
|
1373
1270
|
this.dataLoaded(1);
|
|
1374
1271
|
}
|
|
1375
|
-
/**表单控件类型 */
|
|
1376
|
-
_type;
|
|
1377
1272
|
set type(v) {
|
|
1378
1273
|
this._type = v;
|
|
1379
1274
|
if (v)
|
|
1380
1275
|
this.dataLoaded(2);
|
|
1381
1276
|
}
|
|
1382
|
-
/**表单实体 */
|
|
1383
|
-
_entity;
|
|
1384
1277
|
set entity(v) {
|
|
1385
1278
|
if (v) {
|
|
1386
1279
|
this._entity = v;
|
|
1387
1280
|
this.dataLoaded(3);
|
|
1388
1281
|
}
|
|
1389
1282
|
}
|
|
1390
|
-
/**语言 */
|
|
1391
|
-
_culture;
|
|
1392
1283
|
set culture(v) {
|
|
1393
1284
|
this._culture = v;
|
|
1394
1285
|
if (v)
|
|
1395
1286
|
this.dataLoaded(6);
|
|
1396
1287
|
}
|
|
1397
|
-
/**父级字段名称,用于为表单设置控件赋值 */
|
|
1398
|
-
_parentFiledName;
|
|
1399
1288
|
set parentFiledName(v) {
|
|
1400
1289
|
this._parentFiledName = v;
|
|
1401
1290
|
if (v)
|
|
1402
1291
|
this.dataLoaded(4);
|
|
1403
1292
|
}
|
|
1404
|
-
/**字段配置列表 */
|
|
1405
|
-
_fields = '';
|
|
1406
1293
|
set fields(v) {
|
|
1407
1294
|
this._fields = v;
|
|
1408
1295
|
if (v)
|
|
1409
1296
|
this.dataLoaded(5);
|
|
1410
1297
|
}
|
|
1411
|
-
/**表单控件模板-动态表单配置组件 */
|
|
1412
|
-
FormControlRef;
|
|
1413
|
-
/**表单控件模板-动态表单组件 */
|
|
1414
|
-
FormComponentsRef;
|
|
1415
|
-
/**表单控件组 */
|
|
1416
|
-
_fieldControlGroup = FieldControlGroup;
|
|
1417
1298
|
/**数据加载完成 */
|
|
1418
1299
|
dataLoaded(val) {
|
|
1419
1300
|
if (this._entity) {
|
|
@@ -1458,10 +1339,10 @@ class DynamicComponent {
|
|
|
1458
1339
|
instance.selected = this._selected;
|
|
1459
1340
|
instance.culture = this._culture;
|
|
1460
1341
|
}
|
|
1461
|
-
static
|
|
1462
|
-
static
|
|
1342
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: DynamicComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1343
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.9", type: DynamicComponent, selector: "df-dynamic", inputs: { selected: "selected", type: "type", entity: "entity", culture: "culture", parentFiledName: "parentFiledName", fields: "fields" }, viewQueries: [{ propertyName: "FormControlRef", first: true, predicate: ["FormControlRef"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "FormComponentsRef", first: true, predicate: ["FormComponentsRef"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: "<template #FormControlRef></template>\n<template #FormComponentsRef></template>", styles: [""] }); }
|
|
1463
1344
|
}
|
|
1464
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: DynamicComponent, decorators: [{
|
|
1465
1346
|
type: Component,
|
|
1466
1347
|
args: [{ selector: 'df-dynamic', template: "<template #FormControlRef></template>\n<template #FormComponentsRef></template>" }]
|
|
1467
1348
|
}], propDecorators: { selected: [{
|
|
@@ -1487,14 +1368,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1487
1368
|
// import { CKEditorModule } from '@ckeditor/ckeditor5-angular';
|
|
1488
1369
|
class DynamicFormModule {
|
|
1489
1370
|
static forRoot(config) {
|
|
1490
|
-
AddFieldControlGroup(config
|
|
1371
|
+
AddFieldControlGroup(config?.cmsFieldControlGroup);
|
|
1491
1372
|
return {
|
|
1492
1373
|
ngModule: DynamicFormModule,
|
|
1493
1374
|
providers: []
|
|
1494
1375
|
};
|
|
1495
1376
|
}
|
|
1496
|
-
static
|
|
1497
|
-
static
|
|
1377
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: DynamicFormModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1378
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.0.9", ngImport: i0, type: DynamicFormModule, declarations: [TextEditConfigComponent,
|
|
1498
1379
|
TextEditComponent,
|
|
1499
1380
|
SwitchConfigComponent,
|
|
1500
1381
|
SwitchControlComponent,
|
|
@@ -1522,15 +1403,15 @@ class DynamicFormModule {
|
|
|
1522
1403
|
CkEditorConfigComponent,
|
|
1523
1404
|
SelectConfigComponent,
|
|
1524
1405
|
SelectControlComponent,
|
|
1525
|
-
DynamicComponent] });
|
|
1526
|
-
static
|
|
1406
|
+
DynamicComponent] }); }
|
|
1407
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: DynamicFormModule, imports: [FormsModule,
|
|
1527
1408
|
CoreModule,
|
|
1528
1409
|
ThemeSharedModule,
|
|
1529
1410
|
ReactiveFormsModule,
|
|
1530
1411
|
NgbDropdownModule,
|
|
1531
|
-
NzTreeModule] });
|
|
1412
|
+
NzTreeModule] }); }
|
|
1532
1413
|
}
|
|
1533
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1414
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.9", ngImport: i0, type: DynamicFormModule, decorators: [{
|
|
1534
1415
|
type: NgModule,
|
|
1535
1416
|
args: [{
|
|
1536
1417
|
declarations: [
|