@memberjunction/ng-core-entity-forms 5.8.0 → 5.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/custom/Entities/entity-form.component.d.ts +1 -1
- package/dist/lib/custom/Entities/entity-form.component.d.ts.map +1 -1
- package/dist/lib/custom/Entities/entity-form.component.js +530 -484
- package/dist/lib/custom/Entities/entity-form.component.js.map +1 -1
- package/dist/lib/custom/Queries/query-form.component.d.ts +4 -0
- package/dist/lib/custom/Queries/query-form.component.d.ts.map +1 -1
- package/dist/lib/custom/Queries/query-form.component.js +510 -402
- package/dist/lib/custom/Queries/query-form.component.js.map +1 -1
- package/dist/lib/custom/custom-forms.module.d.ts +3 -1
- package/dist/lib/custom/custom-forms.module.d.ts.map +1 -1
- package/dist/lib/custom/custom-forms.module.js +11 -3
- package/dist/lib/custom/custom-forms.module.js.map +1 -1
- package/dist/lib/generated/Entities/MJAIAgentRun/mjaiagentrun.form.component.d.ts.map +1 -1
- package/dist/lib/generated/Entities/MJAIAgentRun/mjaiagentrun.form.component.js +19 -21
- package/dist/lib/generated/Entities/MJAIAgentRun/mjaiagentrun.form.component.js.map +1 -1
- package/dist/lib/generated/Entities/MJCompanyIntegration/mjcompanyintegration.form.component.d.ts.map +1 -1
- package/dist/lib/generated/Entities/MJCompanyIntegration/mjcompanyintegration.form.component.js +61 -35
- package/dist/lib/generated/Entities/MJCompanyIntegration/mjcompanyintegration.form.component.js.map +1 -1
- package/dist/lib/generated/Entities/MJIntegration/mjintegration.form.component.d.ts.map +1 -1
- package/dist/lib/generated/Entities/MJIntegration/mjintegration.form.component.js +24 -6
- package/dist/lib/generated/Entities/MJIntegration/mjintegration.form.component.js.map +1 -1
- package/dist/lib/generated/Entities/MJIntegrationObject/mjintegrationobject.form.component.d.ts +10 -0
- package/dist/lib/generated/Entities/MJIntegrationObject/mjintegrationobject.form.component.d.ts.map +1 -0
- package/dist/lib/generated/Entities/MJIntegrationObject/mjintegrationobject.form.component.js +137 -0
- package/dist/lib/generated/Entities/MJIntegrationObject/mjintegrationobject.form.component.js.map +1 -0
- package/dist/lib/generated/Entities/MJIntegrationObjectField/mjintegrationobjectfield.form.component.d.ts +10 -0
- package/dist/lib/generated/Entities/MJIntegrationObjectField/mjintegrationobjectfield.form.component.d.ts.map +1 -0
- package/dist/lib/generated/Entities/MJIntegrationObjectField/mjintegrationobjectfield.form.component.js +103 -0
- package/dist/lib/generated/Entities/MJIntegrationObjectField/mjintegrationobjectfield.form.component.js.map +1 -0
- package/dist/lib/generated/generated-forms.module.d.ts +119 -117
- package/dist/lib/generated/generated-forms.module.d.ts.map +1 -1
- package/dist/lib/generated/generated-forms.module.js +48 -42
- package/dist/lib/generated/generated-forms.module.js.map +1 -1
- package/package.json +31 -30
|
@@ -187,6 +187,8 @@ import { MJFileStorageProviderFormComponent } from "./Entities/MJFileStorageProv
|
|
|
187
187
|
import { MJFileFormComponent } from "./Entities/MJFile/mjfile.form.component";
|
|
188
188
|
import { MJGeneratedCodeCategoryFormComponent } from "./Entities/MJGeneratedCodeCategory/mjgeneratedcodecategory.form.component";
|
|
189
189
|
import { MJGeneratedCodeFormComponent } from "./Entities/MJGeneratedCode/mjgeneratedcode.form.component";
|
|
190
|
+
import { MJIntegrationObjectFieldFormComponent } from "./Entities/MJIntegrationObjectField/mjintegrationobjectfield.form.component";
|
|
191
|
+
import { MJIntegrationObjectFormComponent } from "./Entities/MJIntegrationObject/mjintegrationobject.form.component";
|
|
190
192
|
import { MJIntegrationSourceTypeFormComponent } from "./Entities/MJIntegrationSourceType/mjintegrationsourcetype.form.component";
|
|
191
193
|
import { MJIntegrationURLFormatFormComponent } from "./Entities/MJIntegrationURLFormat/mjintegrationurlformat.form.component";
|
|
192
194
|
import { MJIntegrationFormComponent } from "./Entities/MJIntegration/mjintegration.form.component";
|
|
@@ -897,13 +899,13 @@ export class GeneratedForms_SubModule_8 {
|
|
|
897
899
|
MJFileFormComponent,
|
|
898
900
|
MJGeneratedCodeCategoryFormComponent,
|
|
899
901
|
MJGeneratedCodeFormComponent,
|
|
902
|
+
MJIntegrationObjectFieldFormComponent,
|
|
903
|
+
MJIntegrationObjectFormComponent,
|
|
900
904
|
MJIntegrationSourceTypeFormComponent,
|
|
901
905
|
MJIntegrationURLFormatFormComponent,
|
|
902
906
|
MJIntegrationFormComponent,
|
|
903
907
|
MJLibraryFormComponent,
|
|
904
|
-
MJLibraryItemFormComponent
|
|
905
|
-
MJListCategoryFormComponent,
|
|
906
|
-
MJListDetailFormComponent
|
|
908
|
+
MJLibraryItemFormComponent
|
|
907
909
|
],
|
|
908
910
|
imports: [
|
|
909
911
|
CommonModule,
|
|
@@ -929,13 +931,13 @@ export class GeneratedForms_SubModule_8 {
|
|
|
929
931
|
MJFileFormComponent,
|
|
930
932
|
MJGeneratedCodeCategoryFormComponent,
|
|
931
933
|
MJGeneratedCodeFormComponent,
|
|
934
|
+
MJIntegrationObjectFieldFormComponent,
|
|
935
|
+
MJIntegrationObjectFormComponent,
|
|
932
936
|
MJIntegrationSourceTypeFormComponent,
|
|
933
937
|
MJIntegrationURLFormatFormComponent,
|
|
934
938
|
MJIntegrationFormComponent,
|
|
935
939
|
MJLibraryFormComponent,
|
|
936
|
-
MJLibraryItemFormComponent,
|
|
937
|
-
MJListCategoryFormComponent,
|
|
938
|
-
MJListDetailFormComponent], imports: [CommonModule,
|
|
940
|
+
MJLibraryItemFormComponent], imports: [CommonModule,
|
|
939
941
|
FormsModule,
|
|
940
942
|
LayoutModule,
|
|
941
943
|
BaseFormsModule,
|
|
@@ -955,6 +957,8 @@ export class GeneratedForms_SubModule_9 {
|
|
|
955
957
|
type: NgModule,
|
|
956
958
|
args: [{
|
|
957
959
|
declarations: [
|
|
960
|
+
MJListCategoryFormComponent,
|
|
961
|
+
MJListDetailFormComponent,
|
|
958
962
|
MJListInvitationFormComponent,
|
|
959
963
|
MJListShareFormComponent,
|
|
960
964
|
MJListFormComponent,
|
|
@@ -972,9 +976,7 @@ export class GeneratedForms_SubModule_9 {
|
|
|
972
976
|
MJOpenAppInstallHistoryFormComponent,
|
|
973
977
|
MJOpenAppFormComponent,
|
|
974
978
|
MJOutputDeliveryTypeFormComponent,
|
|
975
|
-
MJOutputFormatTypeFormComponent
|
|
976
|
-
MJOutputTriggerTypeFormComponent,
|
|
977
|
-
MJProjectFormComponent
|
|
979
|
+
MJOutputFormatTypeFormComponent
|
|
978
980
|
],
|
|
979
981
|
imports: [
|
|
980
982
|
CommonModule,
|
|
@@ -987,7 +989,9 @@ export class GeneratedForms_SubModule_9 {
|
|
|
987
989
|
exports: []
|
|
988
990
|
}]
|
|
989
991
|
}], null, null); })();
|
|
990
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_9, { declarations: [
|
|
992
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_9, { declarations: [MJListCategoryFormComponent,
|
|
993
|
+
MJListDetailFormComponent,
|
|
994
|
+
MJListInvitationFormComponent,
|
|
991
995
|
MJListShareFormComponent,
|
|
992
996
|
MJListFormComponent,
|
|
993
997
|
MJMCPServerConnectionPermissionFormComponent,
|
|
@@ -1004,9 +1008,7 @@ export class GeneratedForms_SubModule_9 {
|
|
|
1004
1008
|
MJOpenAppInstallHistoryFormComponent,
|
|
1005
1009
|
MJOpenAppFormComponent,
|
|
1006
1010
|
MJOutputDeliveryTypeFormComponent,
|
|
1007
|
-
MJOutputFormatTypeFormComponent,
|
|
1008
|
-
MJOutputTriggerTypeFormComponent,
|
|
1009
|
-
MJProjectFormComponent], imports: [CommonModule,
|
|
1011
|
+
MJOutputFormatTypeFormComponent], imports: [CommonModule,
|
|
1010
1012
|
FormsModule,
|
|
1011
1013
|
LayoutModule,
|
|
1012
1014
|
BaseFormsModule,
|
|
@@ -1026,6 +1028,8 @@ export class GeneratedForms_SubModule_10 {
|
|
|
1026
1028
|
type: NgModule,
|
|
1027
1029
|
args: [{
|
|
1028
1030
|
declarations: [
|
|
1031
|
+
MJOutputTriggerTypeFormComponent,
|
|
1032
|
+
MJProjectFormComponent,
|
|
1029
1033
|
MJPublicLinkFormComponent,
|
|
1030
1034
|
MJQueryFormComponent,
|
|
1031
1035
|
MJQueryCategoryFormComponent,
|
|
@@ -1043,9 +1047,7 @@ export class GeneratedForms_SubModule_10 {
|
|
|
1043
1047
|
MJRecommendationFormComponent,
|
|
1044
1048
|
MJRecordChangeReplayRunFormComponent,
|
|
1045
1049
|
MJRecordChangeFormComponent,
|
|
1046
|
-
MJRecordLinkFormComponent
|
|
1047
|
-
MJRecordMergeDeletionLogFormComponent,
|
|
1048
|
-
MJRecordMergeLogFormComponent
|
|
1050
|
+
MJRecordLinkFormComponent
|
|
1049
1051
|
],
|
|
1050
1052
|
imports: [
|
|
1051
1053
|
CommonModule,
|
|
@@ -1058,7 +1060,9 @@ export class GeneratedForms_SubModule_10 {
|
|
|
1058
1060
|
exports: []
|
|
1059
1061
|
}]
|
|
1060
1062
|
}], null, null); })();
|
|
1061
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_10, { declarations: [
|
|
1063
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_10, { declarations: [MJOutputTriggerTypeFormComponent,
|
|
1064
|
+
MJProjectFormComponent,
|
|
1065
|
+
MJPublicLinkFormComponent,
|
|
1062
1066
|
MJQueryFormComponent,
|
|
1063
1067
|
MJQueryCategoryFormComponent,
|
|
1064
1068
|
MJQueryEntityFormComponent,
|
|
@@ -1075,9 +1079,7 @@ export class GeneratedForms_SubModule_10 {
|
|
|
1075
1079
|
MJRecommendationFormComponent,
|
|
1076
1080
|
MJRecordChangeReplayRunFormComponent,
|
|
1077
1081
|
MJRecordChangeFormComponent,
|
|
1078
|
-
MJRecordLinkFormComponent,
|
|
1079
|
-
MJRecordMergeDeletionLogFormComponent,
|
|
1080
|
-
MJRecordMergeLogFormComponent], imports: [CommonModule,
|
|
1082
|
+
MJRecordLinkFormComponent], imports: [CommonModule,
|
|
1081
1083
|
FormsModule,
|
|
1082
1084
|
LayoutModule,
|
|
1083
1085
|
BaseFormsModule,
|
|
@@ -1097,6 +1099,8 @@ export class GeneratedForms_SubModule_11 {
|
|
|
1097
1099
|
type: NgModule,
|
|
1098
1100
|
args: [{
|
|
1099
1101
|
declarations: [
|
|
1102
|
+
MJRecordMergeDeletionLogFormComponent,
|
|
1103
|
+
MJRecordMergeLogFormComponent,
|
|
1100
1104
|
MJReportCategoryFormComponent,
|
|
1101
1105
|
MJReportSnapshotFormComponent,
|
|
1102
1106
|
MJReportUserStateFormComponent,
|
|
@@ -1114,9 +1118,7 @@ export class GeneratedForms_SubModule_11 {
|
|
|
1114
1118
|
MJScheduledJobFormComponent,
|
|
1115
1119
|
MJSchemaInfoFormComponent,
|
|
1116
1120
|
MJSkillFormComponent,
|
|
1117
|
-
MJSQLDialectFormComponent
|
|
1118
|
-
MJTaggedItemFormComponent,
|
|
1119
|
-
MJTagFormComponent
|
|
1121
|
+
MJSQLDialectFormComponent
|
|
1120
1122
|
],
|
|
1121
1123
|
imports: [
|
|
1122
1124
|
CommonModule,
|
|
@@ -1129,7 +1131,9 @@ export class GeneratedForms_SubModule_11 {
|
|
|
1129
1131
|
exports: []
|
|
1130
1132
|
}]
|
|
1131
1133
|
}], null, null); })();
|
|
1132
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_11, { declarations: [
|
|
1134
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_11, { declarations: [MJRecordMergeDeletionLogFormComponent,
|
|
1135
|
+
MJRecordMergeLogFormComponent,
|
|
1136
|
+
MJReportCategoryFormComponent,
|
|
1133
1137
|
MJReportSnapshotFormComponent,
|
|
1134
1138
|
MJReportUserStateFormComponent,
|
|
1135
1139
|
MJReportVersionFormComponent,
|
|
@@ -1146,9 +1150,7 @@ export class GeneratedForms_SubModule_11 {
|
|
|
1146
1150
|
MJScheduledJobFormComponent,
|
|
1147
1151
|
MJSchemaInfoFormComponent,
|
|
1148
1152
|
MJSkillFormComponent,
|
|
1149
|
-
MJSQLDialectFormComponent,
|
|
1150
|
-
MJTaggedItemFormComponent,
|
|
1151
|
-
MJTagFormComponent], imports: [CommonModule,
|
|
1153
|
+
MJSQLDialectFormComponent], imports: [CommonModule,
|
|
1152
1154
|
FormsModule,
|
|
1153
1155
|
LayoutModule,
|
|
1154
1156
|
BaseFormsModule,
|
|
@@ -1168,6 +1170,8 @@ export class GeneratedForms_SubModule_12 {
|
|
|
1168
1170
|
type: NgModule,
|
|
1169
1171
|
args: [{
|
|
1170
1172
|
declarations: [
|
|
1173
|
+
MJTaggedItemFormComponent,
|
|
1174
|
+
MJTagFormComponent,
|
|
1171
1175
|
MJTaskDependencyFormComponent,
|
|
1172
1176
|
MJTaskTypeFormComponent,
|
|
1173
1177
|
MJTaskFormComponent,
|
|
@@ -1185,9 +1189,7 @@ export class GeneratedForms_SubModule_12 {
|
|
|
1185
1189
|
MJTestSuiteTestFormComponent,
|
|
1186
1190
|
MJTestSuiteFormComponent,
|
|
1187
1191
|
MJTestTypeFormComponent,
|
|
1188
|
-
MJTestFormComponent
|
|
1189
|
-
MJUserApplicationEntityFormComponent,
|
|
1190
|
-
MJUserApplicationFormComponent
|
|
1192
|
+
MJTestFormComponent
|
|
1191
1193
|
],
|
|
1192
1194
|
imports: [
|
|
1193
1195
|
CommonModule,
|
|
@@ -1200,7 +1202,9 @@ export class GeneratedForms_SubModule_12 {
|
|
|
1200
1202
|
exports: []
|
|
1201
1203
|
}]
|
|
1202
1204
|
}], null, null); })();
|
|
1203
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_12, { declarations: [
|
|
1205
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_12, { declarations: [MJTaggedItemFormComponent,
|
|
1206
|
+
MJTagFormComponent,
|
|
1207
|
+
MJTaskDependencyFormComponent,
|
|
1204
1208
|
MJTaskTypeFormComponent,
|
|
1205
1209
|
MJTaskFormComponent,
|
|
1206
1210
|
MJTemplateCategoryFormComponent,
|
|
@@ -1217,9 +1221,7 @@ export class GeneratedForms_SubModule_12 {
|
|
|
1217
1221
|
MJTestSuiteTestFormComponent,
|
|
1218
1222
|
MJTestSuiteFormComponent,
|
|
1219
1223
|
MJTestTypeFormComponent,
|
|
1220
|
-
MJTestFormComponent,
|
|
1221
|
-
MJUserApplicationEntityFormComponent,
|
|
1222
|
-
MJUserApplicationFormComponent], imports: [CommonModule,
|
|
1224
|
+
MJTestFormComponent], imports: [CommonModule,
|
|
1223
1225
|
FormsModule,
|
|
1224
1226
|
LayoutModule,
|
|
1225
1227
|
BaseFormsModule,
|
|
@@ -1239,6 +1241,8 @@ export class GeneratedForms_SubModule_13 {
|
|
|
1239
1241
|
type: NgModule,
|
|
1240
1242
|
args: [{
|
|
1241
1243
|
declarations: [
|
|
1244
|
+
MJUserApplicationEntityFormComponent,
|
|
1245
|
+
MJUserApplicationFormComponent,
|
|
1242
1246
|
MJUserFavoriteFormComponent,
|
|
1243
1247
|
MJUserNotificationPreferenceFormComponent,
|
|
1244
1248
|
MJUserNotificationTypeFormComponent,
|
|
@@ -1256,9 +1260,7 @@ export class GeneratedForms_SubModule_13 {
|
|
|
1256
1260
|
MJVersionInstallationFormComponent,
|
|
1257
1261
|
MJVersionLabelItemFormComponent,
|
|
1258
1262
|
MJVersionLabelRestoreFormComponent,
|
|
1259
|
-
MJVersionLabelFormComponent
|
|
1260
|
-
MJWorkflowEngineFormComponent,
|
|
1261
|
-
MJWorkflowRunFormComponent
|
|
1263
|
+
MJVersionLabelFormComponent
|
|
1262
1264
|
],
|
|
1263
1265
|
imports: [
|
|
1264
1266
|
CommonModule,
|
|
@@ -1271,7 +1273,9 @@ export class GeneratedForms_SubModule_13 {
|
|
|
1271
1273
|
exports: []
|
|
1272
1274
|
}]
|
|
1273
1275
|
}], null, null); })();
|
|
1274
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_13, { declarations: [
|
|
1276
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_13, { declarations: [MJUserApplicationEntityFormComponent,
|
|
1277
|
+
MJUserApplicationFormComponent,
|
|
1278
|
+
MJUserFavoriteFormComponent,
|
|
1275
1279
|
MJUserNotificationPreferenceFormComponent,
|
|
1276
1280
|
MJUserNotificationTypeFormComponent,
|
|
1277
1281
|
MJUserNotificationFormComponent,
|
|
@@ -1288,9 +1292,7 @@ export class GeneratedForms_SubModule_13 {
|
|
|
1288
1292
|
MJVersionInstallationFormComponent,
|
|
1289
1293
|
MJVersionLabelItemFormComponent,
|
|
1290
1294
|
MJVersionLabelRestoreFormComponent,
|
|
1291
|
-
MJVersionLabelFormComponent,
|
|
1292
|
-
MJWorkflowEngineFormComponent,
|
|
1293
|
-
MJWorkflowRunFormComponent], imports: [CommonModule,
|
|
1295
|
+
MJVersionLabelFormComponent], imports: [CommonModule,
|
|
1294
1296
|
FormsModule,
|
|
1295
1297
|
LayoutModule,
|
|
1296
1298
|
BaseFormsModule,
|
|
@@ -1310,6 +1312,8 @@ export class GeneratedForms_SubModule_14 {
|
|
|
1310
1312
|
type: NgModule,
|
|
1311
1313
|
args: [{
|
|
1312
1314
|
declarations: [
|
|
1315
|
+
MJWorkflowEngineFormComponent,
|
|
1316
|
+
MJWorkflowRunFormComponent,
|
|
1313
1317
|
MJWorkflowFormComponent,
|
|
1314
1318
|
MJWorkspaceItemFormComponent,
|
|
1315
1319
|
MJWorkspaceFormComponent
|
|
@@ -1325,7 +1329,9 @@ export class GeneratedForms_SubModule_14 {
|
|
|
1325
1329
|
exports: []
|
|
1326
1330
|
}]
|
|
1327
1331
|
}], null, null); })();
|
|
1328
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_14, { declarations: [
|
|
1332
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(GeneratedForms_SubModule_14, { declarations: [MJWorkflowEngineFormComponent,
|
|
1333
|
+
MJWorkflowRunFormComponent,
|
|
1334
|
+
MJWorkflowFormComponent,
|
|
1329
1335
|
MJWorkspaceItemFormComponent,
|
|
1330
1336
|
MJWorkspaceFormComponent], imports: [CommonModule,
|
|
1331
1337
|
FormsModule,
|