@lowcodeunit/applications-flow-common 1.36.57-lets-get-social-ish → 1.36.58-lets-get-social-ish
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lcu.api.mjs +3 -1
- package/esm2020/lib/applications-flow.module.mjs +14 -4
- package/esm2020/lib/controls/edit-project-form/edit-project-form.component.mjs +74 -0
- package/esm2020/lib/dialogs/edit-project-dialog/edit-project-dialog.component.mjs +63 -0
- package/esm2020/lib/services/eac.service.mjs +2 -2
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +134 -5
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +128 -5
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lcu.api.d.ts +2 -0
- package/lib/applications-flow.module.d.ts +12 -10
- package/lib/controls/edit-project-form/edit-project-form.component.d.ts +24 -0
- package/lib/dialogs/edit-project-dialog/edit-project-dialog.component.d.ts +31 -0
- package/lib/services/eac.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -994,7 +994,7 @@ class EaCService {
|
|
|
994
994
|
}
|
|
995
995
|
SaveProjectAsCode(req) {
|
|
996
996
|
return __awaiter(this, void 0, void 0, function* () {
|
|
997
|
-
yield this.handleSaveProject(req.ProjectLookup, req.Project);
|
|
997
|
+
return yield this.handleSaveProject(req.ProjectLookup, req.Project);
|
|
998
998
|
});
|
|
999
999
|
}
|
|
1000
1000
|
SetActiveEnterprise(entLookup) {
|
|
@@ -7010,6 +7010,127 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
7010
7010
|
args: [StateConfigFormComponent]
|
|
7011
7011
|
}] } });
|
|
7012
7012
|
|
|
7013
|
+
class EditProjectFormComponent {
|
|
7014
|
+
constructor(eacSvc, formBldr) {
|
|
7015
|
+
this.eacSvc = eacSvc;
|
|
7016
|
+
this.formBldr = formBldr;
|
|
7017
|
+
this.SaveFormEvent = new EventEmitter;
|
|
7018
|
+
}
|
|
7019
|
+
get DescriptionFormControl() {
|
|
7020
|
+
return this.ProjectFormGroup.controls.description;
|
|
7021
|
+
}
|
|
7022
|
+
get Project() {
|
|
7023
|
+
var _a, _b;
|
|
7024
|
+
return (_b = (_a = this.State) === null || _a === void 0 ? void 0 : _a.EaC) === null || _b === void 0 ? void 0 : _b.Projects[this.ProjectLookup];
|
|
7025
|
+
}
|
|
7026
|
+
get NameFormControl() {
|
|
7027
|
+
return this.ProjectFormGroup.controls.name;
|
|
7028
|
+
}
|
|
7029
|
+
get State() {
|
|
7030
|
+
return this.eacSvc.State;
|
|
7031
|
+
}
|
|
7032
|
+
ngOnInit() {
|
|
7033
|
+
this.setupProjectForm();
|
|
7034
|
+
}
|
|
7035
|
+
SaveProject() {
|
|
7036
|
+
const proj = this.Project;
|
|
7037
|
+
// console.log("APP=", app);
|
|
7038
|
+
proj.Project = {
|
|
7039
|
+
Name: this.NameFormControl.value,
|
|
7040
|
+
Description: this.DescriptionFormControl.value,
|
|
7041
|
+
};
|
|
7042
|
+
const saveProjReq = {
|
|
7043
|
+
ProjectLookup: this.ProjectLookup,
|
|
7044
|
+
Project: proj
|
|
7045
|
+
};
|
|
7046
|
+
this.eacSvc.SaveProjectAsCode(saveProjReq).then(res => {
|
|
7047
|
+
this.SaveFormEvent.emit(res);
|
|
7048
|
+
});
|
|
7049
|
+
}
|
|
7050
|
+
SubmitProjectControl() {
|
|
7051
|
+
console.log("application form: ", this.ProjectFormGroup.value);
|
|
7052
|
+
this.SaveProject();
|
|
7053
|
+
}
|
|
7054
|
+
setupProjectForm() {
|
|
7055
|
+
var _a, _b, _c, _d;
|
|
7056
|
+
if (this.Project != null) {
|
|
7057
|
+
this.ProjectFormGroup = this.formBldr.group({
|
|
7058
|
+
name: [(_b = (_a = this.Project) === null || _a === void 0 ? void 0 : _a.Project) === null || _b === void 0 ? void 0 : _b.Name, Validators.required],
|
|
7059
|
+
description: [
|
|
7060
|
+
(_d = (_c = this.Project) === null || _c === void 0 ? void 0 : _c.Project) === null || _d === void 0 ? void 0 : _d.Description,
|
|
7061
|
+
Validators.required,
|
|
7062
|
+
]
|
|
7063
|
+
});
|
|
7064
|
+
}
|
|
7065
|
+
}
|
|
7066
|
+
}
|
|
7067
|
+
EditProjectFormComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: EditProjectFormComponent, deps: [{ token: EaCService }, { token: i1$2.FormBuilder }], target: i0.ɵɵFactoryTarget.Component });
|
|
7068
|
+
EditProjectFormComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: EditProjectFormComponent, selector: "lcu-edit-project-form", inputs: { ProjectLookup: ["project-lookup", "ProjectLookup"] }, outputs: { SaveFormEvent: "save-form-event" }, ngImport: i0, template: "<form class=\"form-card\" [formGroup]=\"ProjectFormGroup\" (ngSubmit)=\"SubmitProjectControl()\" >\n \n <ng-container *ngIf=\"State?.Loading\">\n\n <skeleton-block \n class=\"s-block\"\n effect=\"wave\" \n ></skeleton-block>\n\n <skeleton-block \n class=\"s-block\"\n effect=\"wave\" \n ></skeleton-block>\n\n </ng-container>\n\n <ng-container *ngIf=\"!State?.Loading\">\n <mat-form-field class=\"mat-full-width\">\n <input\n matInput\n placeholder=\"Name\"\n formControlName=\"name\"\n required\n />\n </mat-form-field>\n\n <mat-form-field class=\"mat-full-width\">\n <textarea\n matInput\n placeholder=\"Description\"\n formControlName=\"description\"\n rows=\"3\"\n required\n ></textarea>\n </mat-form-field>\n\n \n </ng-container>\n\n</form>", styles: [""], components: [{ type: i4$3.SkeletonBlockComponent, selector: "skeleton-block", inputs: ["width", "height", "effect", "borderRadius"] }, { type: i4$1.MatFormField, selector: "mat-form-field", inputs: ["color", "appearance", "hideRequiredMarker", "hintLabel", "floatLabel"], exportAs: ["matFormField"] }], directives: [{ type: i1$2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { type: i1$2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i1$2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i9.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i11$1.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { type: i1$2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i1$2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { type: i1$2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }] });
|
|
7069
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: EditProjectFormComponent, decorators: [{
|
|
7070
|
+
type: Component,
|
|
7071
|
+
args: [{ selector: 'lcu-edit-project-form', template: "<form class=\"form-card\" [formGroup]=\"ProjectFormGroup\" (ngSubmit)=\"SubmitProjectControl()\" >\n \n <ng-container *ngIf=\"State?.Loading\">\n\n <skeleton-block \n class=\"s-block\"\n effect=\"wave\" \n ></skeleton-block>\n\n <skeleton-block \n class=\"s-block\"\n effect=\"wave\" \n ></skeleton-block>\n\n </ng-container>\n\n <ng-container *ngIf=\"!State?.Loading\">\n <mat-form-field class=\"mat-full-width\">\n <input\n matInput\n placeholder=\"Name\"\n formControlName=\"name\"\n required\n />\n </mat-form-field>\n\n <mat-form-field class=\"mat-full-width\">\n <textarea\n matInput\n placeholder=\"Description\"\n formControlName=\"description\"\n rows=\"3\"\n required\n ></textarea>\n </mat-form-field>\n\n \n </ng-container>\n\n</form>", styles: [""] }]
|
|
7072
|
+
}], ctorParameters: function () { return [{ type: EaCService }, { type: i1$2.FormBuilder }]; }, propDecorators: { ProjectLookup: [{
|
|
7073
|
+
type: Input,
|
|
7074
|
+
args: ['project-lookup']
|
|
7075
|
+
}], SaveFormEvent: [{
|
|
7076
|
+
type: Output,
|
|
7077
|
+
args: ['save-form-event']
|
|
7078
|
+
}] } });
|
|
7079
|
+
|
|
7080
|
+
class EditProjectDialogComponent {
|
|
7081
|
+
constructor(eacSvc, dialogRef, data, snackBar) {
|
|
7082
|
+
this.eacSvc = eacSvc;
|
|
7083
|
+
this.dialogRef = dialogRef;
|
|
7084
|
+
this.data = data;
|
|
7085
|
+
this.snackBar = snackBar;
|
|
7086
|
+
}
|
|
7087
|
+
get Project() {
|
|
7088
|
+
var _a, _b;
|
|
7089
|
+
return (_b = (_a = this.State) === null || _a === void 0 ? void 0 : _a.EaC) === null || _b === void 0 ? void 0 : _b.Projects[this.data.projectLookup];
|
|
7090
|
+
}
|
|
7091
|
+
get ProjectFormGroup() {
|
|
7092
|
+
var _a;
|
|
7093
|
+
return (_a = this.EditProjectControl) === null || _a === void 0 ? void 0 : _a.ProjectFormGroup;
|
|
7094
|
+
}
|
|
7095
|
+
get State() {
|
|
7096
|
+
return this.eacSvc.State;
|
|
7097
|
+
}
|
|
7098
|
+
ngOnInit() {
|
|
7099
|
+
}
|
|
7100
|
+
CloseDialog() {
|
|
7101
|
+
this.dialogRef.close();
|
|
7102
|
+
}
|
|
7103
|
+
HandleSaveProjectEvent(event) {
|
|
7104
|
+
console.log("event to save: ", event);
|
|
7105
|
+
if (event.Code === 0) {
|
|
7106
|
+
this.snackBar.open("Project Succesfully Updated", "Dismiss", {
|
|
7107
|
+
duration: 5000
|
|
7108
|
+
});
|
|
7109
|
+
this.CloseDialog();
|
|
7110
|
+
}
|
|
7111
|
+
else {
|
|
7112
|
+
this.ErrorMessage = event.Message;
|
|
7113
|
+
}
|
|
7114
|
+
}
|
|
7115
|
+
SaveProject() {
|
|
7116
|
+
this.EditProjectControl.SaveProject();
|
|
7117
|
+
}
|
|
7118
|
+
}
|
|
7119
|
+
EditProjectDialogComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: EditProjectDialogComponent, deps: [{ token: EaCService }, { token: i2$3.MatDialogRef }, { token: MAT_DIALOG_DATA }, { token: i3$1.MatSnackBar }], target: i0.ɵɵFactoryTarget.Component });
|
|
7120
|
+
EditProjectDialogComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: EditProjectDialogComponent, selector: "lcu-edit-project-dialog", viewQueries: [{ propertyName: "EditProjectControl", first: true, predicate: EditProjectFormComponent, descendants: true }], ngImport: i0, template: "<div class=\"dialog-header\" fxLayoutAlign=\"space-between center\">\n <h2 mat-dialog-title>Edit Project:\n {{ Project?.Project?.Name }}</h2>\n\n <button mat-icon-button (click)=\"CloseDialog()\">\n <mat-icon>cancel</mat-icon>\n </button>\n</div>\n\n<mat-dialog-content>\n\n<lcu-edit-project-form \n \n [project-lookup]=\"data.projectLookup\"\n (save-form-event)=\"HandleSaveProjectEvent($event)\">\n</lcu-edit-project-form>\n\n<mat-error *ngIf=\"ErrorMessage\" fxLayoutAlign=\"center center\" >\n {{ ErrorMessage }}\n</mat-error>\n\n</mat-dialog-content>\n\n<mat-dialog-actions \n class=\"actions-container\" \n div fxLayout=\"row\" \n fxLayoutAlign=\"end center\"\n>\n <button \n class=\"action-button\"\n mat-raised-button\n fxFlex=\"25%\"\n (click)=\"CloseDialog()\">\n Cancel\n\n </button>\n\n\n\n <button \n *ngIf=\"!State?.Loading\"\n mat-raised-button \n type=\"submit\" \n fxFlex=\"25%\" \n color=\"primary\" \n (click)=\"SaveProject()\"\n [disabled]=\"!ProjectFormGroup?.valid || !ProjectFormGroup?.dirty\">\n <!-- <mat-icon>save</mat-icon> -->\n Save\n </button>\n\n</mat-dialog-actions>\n\n", styles: [""], components: [{ type: i4.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { type: i5.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { type: EditProjectFormComponent, selector: "lcu-edit-project-form", inputs: ["project-lookup"], outputs: ["save-form-event"] }], directives: [{ type: i8.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { type: i2$3.MatDialogTitle, selector: "[mat-dialog-title], [matDialogTitle]", inputs: ["id"], exportAs: ["matDialogTitle"] }, { type: i2$3.MatDialogContent, selector: "[mat-dialog-content], mat-dialog-content, [matDialogContent]" }, { type: i9.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4$1.MatError, selector: "mat-error", inputs: ["id"] }, { type: i2$3.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]" }, { type: i8.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { type: i8.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }] });
|
|
7121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: EditProjectDialogComponent, decorators: [{
|
|
7122
|
+
type: Component,
|
|
7123
|
+
args: [{ selector: 'lcu-edit-project-dialog', template: "<div class=\"dialog-header\" fxLayoutAlign=\"space-between center\">\n <h2 mat-dialog-title>Edit Project:\n {{ Project?.Project?.Name }}</h2>\n\n <button mat-icon-button (click)=\"CloseDialog()\">\n <mat-icon>cancel</mat-icon>\n </button>\n</div>\n\n<mat-dialog-content>\n\n<lcu-edit-project-form \n \n [project-lookup]=\"data.projectLookup\"\n (save-form-event)=\"HandleSaveProjectEvent($event)\">\n</lcu-edit-project-form>\n\n<mat-error *ngIf=\"ErrorMessage\" fxLayoutAlign=\"center center\" >\n {{ ErrorMessage }}\n</mat-error>\n\n</mat-dialog-content>\n\n<mat-dialog-actions \n class=\"actions-container\" \n div fxLayout=\"row\" \n fxLayoutAlign=\"end center\"\n>\n <button \n class=\"action-button\"\n mat-raised-button\n fxFlex=\"25%\"\n (click)=\"CloseDialog()\">\n Cancel\n\n </button>\n\n\n\n <button \n *ngIf=\"!State?.Loading\"\n mat-raised-button \n type=\"submit\" \n fxFlex=\"25%\" \n color=\"primary\" \n (click)=\"SaveProject()\"\n [disabled]=\"!ProjectFormGroup?.valid || !ProjectFormGroup?.dirty\">\n <!-- <mat-icon>save</mat-icon> -->\n Save\n </button>\n\n</mat-dialog-actions>\n\n", styles: [""] }]
|
|
7124
|
+
}], ctorParameters: function () {
|
|
7125
|
+
return [{ type: EaCService }, { type: i2$3.MatDialogRef }, { type: undefined, decorators: [{
|
|
7126
|
+
type: Inject,
|
|
7127
|
+
args: [MAT_DIALOG_DATA]
|
|
7128
|
+
}] }, { type: i3$1.MatSnackBar }];
|
|
7129
|
+
}, propDecorators: { EditProjectControl: [{
|
|
7130
|
+
type: ViewChild,
|
|
7131
|
+
args: [EditProjectFormComponent]
|
|
7132
|
+
}] } });
|
|
7133
|
+
|
|
7013
7134
|
class ApplicationsFlowModule {
|
|
7014
7135
|
static forRoot() {
|
|
7015
7136
|
return {
|
|
@@ -7077,7 +7198,9 @@ ApplicationsFlowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0",
|
|
|
7077
7198
|
EmulatedDevicesToggleComponent,
|
|
7078
7199
|
FeedHeaderDialogComponent,
|
|
7079
7200
|
StateConfigDialogComponent,
|
|
7080
|
-
StateConfigFormComponent
|
|
7201
|
+
StateConfigFormComponent,
|
|
7202
|
+
EditProjectDialogComponent,
|
|
7203
|
+
EditProjectFormComponent], imports: [AngularEditorModule,
|
|
7081
7204
|
ClipboardModule,
|
|
7082
7205
|
FathymSharedModule,
|
|
7083
7206
|
FormsModule,
|
|
@@ -7138,7 +7261,9 @@ ApplicationsFlowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0",
|
|
|
7138
7261
|
DFSModifiersDialogComponent,
|
|
7139
7262
|
DFSModifiersFormComponent,
|
|
7140
7263
|
StateConfigDialogComponent,
|
|
7141
|
-
StateConfigFormComponent
|
|
7264
|
+
StateConfigFormComponent,
|
|
7265
|
+
EditProjectDialogComponent,
|
|
7266
|
+
EditProjectFormComponent] });
|
|
7142
7267
|
ApplicationsFlowModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ApplicationsFlowModule, imports: [[
|
|
7143
7268
|
AngularEditorModule,
|
|
7144
7269
|
ClipboardModule,
|
|
@@ -7208,6 +7333,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
7208
7333
|
FeedHeaderDialogComponent,
|
|
7209
7334
|
StateConfigDialogComponent,
|
|
7210
7335
|
StateConfigFormComponent,
|
|
7336
|
+
EditProjectDialogComponent,
|
|
7337
|
+
EditProjectFormComponent,
|
|
7211
7338
|
],
|
|
7212
7339
|
imports: [
|
|
7213
7340
|
AngularEditorModule,
|
|
@@ -7275,7 +7402,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
7275
7402
|
DFSModifiersDialogComponent,
|
|
7276
7403
|
DFSModifiersFormComponent,
|
|
7277
7404
|
StateConfigDialogComponent,
|
|
7278
|
-
StateConfigFormComponent
|
|
7405
|
+
StateConfigFormComponent,
|
|
7406
|
+
EditProjectDialogComponent,
|
|
7407
|
+
EditProjectFormComponent
|
|
7279
7408
|
],
|
|
7280
7409
|
entryComponents: [
|
|
7281
7410
|
ApplicationsFlowProjectsElementComponent,
|
|
@@ -7368,5 +7497,5 @@ class FormModel {
|
|
|
7368
7497
|
* Generated bundle index. Do not edit.
|
|
7369
7498
|
*/
|
|
7370
7499
|
|
|
7371
|
-
export { ActionsModel, AnalyticsCardComponent, ApplicationsFlowModule, ApplicationsFlowProjectsContext, ApplicationsFlowProjectsElementComponent, ApplicationsFlowProjectsElementState, ApplicationsFlowService, ApplicationsFlowState, ApplicationsFlowStateContext, AppsFlowComponent, BaseFormComponent, BaseFormConfigModel, BaseFormTestComponent, BreadcrumbComponent, BuildPipelineDialogComponent, BuildPipelineFormComponent, BuildsComponent, CardCarouselComponent, CardFormConfigModel, CreateProjectWizardComponent, CustomDomainDialogComponent, DFSModifiersComponent, DFSModifiersDialogComponent, DFSModifiersFormComponent, DevOpsComponent, DevSettingsPresetModel, DevopsSourceControlFormComponent, DomainModel, DomainsComponent, DynamicTabsComponent, DynamicTabsModel, EaCService, EditApplicationDialogComponent, EditApplicationFormComponent, EmulatedDevicesToggleComponent, FeedCardSmComponent, FeedEntry, FeedHeaderComponent, FeedHeaderDialogComponent, FeedItem, FeedItemAction, FeedItemContributor, FeedItemTab, FormActionsModel, FormCardComponent, FormModel, FormValuesModel, FormsService, GitAuthComponent, GitHubBranch, GitHubOrganization, GitHubRepository, GitHubSetupState, GitHubWorkflowRun, HeaderComponent, HostingDetailsFormGroupComponent, IoTEnsembleService, MainFeedCardComponent, NPMService, NewApplicationDialogComponent, NpmPackageSelectComponent, ProcessorDetailsDialogComponent, ProcessorDetailsFormComponent, ProjectActionsModel, ProjectHostingDetails, ProjectHostingOption, ProjectHostingOptionInput, ProjectInfoCardComponent, ProjectItemsComponent, ProjectNameComponent, ProjectService, ProjectTabsComponent, RecentActivitiesComponent, RootDirectoryComponent, SELECTOR_APPLICATIONS_FLOW_PROJECTS_ELEMENT, SaveApplicationAsCodeEventRequest, SaveDFSModifierEventRequest, SaveEnvironmentAsCodeEventRequest, SaveProjectAsCodeEventRequest, SecurityToggleComponent, SkeletonFeedCardComponent, SlottedCardComponent, SourceControlDialogComponent, SourceControlFormComponent, SourceControlFormControlsComponent, StateConfigDialogComponent, StateConfigFormComponent, ThreeColumnComponent, TwoColumnHeaderComponent, UnpackLowCodeUnitRequest, UpgradeDialogComponent, UserFeedResponse };
|
|
7500
|
+
export { ActionsModel, AnalyticsCardComponent, ApplicationsFlowModule, ApplicationsFlowProjectsContext, ApplicationsFlowProjectsElementComponent, ApplicationsFlowProjectsElementState, ApplicationsFlowService, ApplicationsFlowState, ApplicationsFlowStateContext, AppsFlowComponent, BaseFormComponent, BaseFormConfigModel, BaseFormTestComponent, BreadcrumbComponent, BuildPipelineDialogComponent, BuildPipelineFormComponent, BuildsComponent, CardCarouselComponent, CardFormConfigModel, CreateProjectWizardComponent, CustomDomainDialogComponent, DFSModifiersComponent, DFSModifiersDialogComponent, DFSModifiersFormComponent, DevOpsComponent, DevSettingsPresetModel, DevopsSourceControlFormComponent, DomainModel, DomainsComponent, DynamicTabsComponent, DynamicTabsModel, EaCService, EditApplicationDialogComponent, EditApplicationFormComponent, EditProjectDialogComponent, EditProjectFormComponent, EmulatedDevicesToggleComponent, FeedCardSmComponent, FeedEntry, FeedHeaderComponent, FeedHeaderDialogComponent, FeedItem, FeedItemAction, FeedItemContributor, FeedItemTab, FormActionsModel, FormCardComponent, FormModel, FormValuesModel, FormsService, GitAuthComponent, GitHubBranch, GitHubOrganization, GitHubRepository, GitHubSetupState, GitHubWorkflowRun, HeaderComponent, HostingDetailsFormGroupComponent, IoTEnsembleService, MainFeedCardComponent, NPMService, NewApplicationDialogComponent, NpmPackageSelectComponent, ProcessorDetailsDialogComponent, ProcessorDetailsFormComponent, ProjectActionsModel, ProjectHostingDetails, ProjectHostingOption, ProjectHostingOptionInput, ProjectInfoCardComponent, ProjectItemsComponent, ProjectNameComponent, ProjectService, ProjectTabsComponent, RecentActivitiesComponent, RootDirectoryComponent, SELECTOR_APPLICATIONS_FLOW_PROJECTS_ELEMENT, SaveApplicationAsCodeEventRequest, SaveDFSModifierEventRequest, SaveEnvironmentAsCodeEventRequest, SaveProjectAsCodeEventRequest, SecurityToggleComponent, SkeletonFeedCardComponent, SlottedCardComponent, SourceControlDialogComponent, SourceControlFormComponent, SourceControlFormControlsComponent, StateConfigDialogComponent, StateConfigFormComponent, ThreeColumnComponent, TwoColumnHeaderComponent, UnpackLowCodeUnitRequest, UpgradeDialogComponent, UserFeedResponse };
|
|
7372
7501
|
//# sourceMappingURL=lowcodeunit-applications-flow-common.mjs.map
|