@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
|
@@ -945,7 +945,7 @@ class EaCService {
|
|
|
945
945
|
return await this.handleSaveEnvironment(req);
|
|
946
946
|
}
|
|
947
947
|
async SaveProjectAsCode(req) {
|
|
948
|
-
await this.handleSaveProject(req.ProjectLookup, req.Project);
|
|
948
|
+
return await this.handleSaveProject(req.ProjectLookup, req.Project);
|
|
949
949
|
}
|
|
950
950
|
async SetActiveEnterprise(entLookup) {
|
|
951
951
|
this.projectService.SetActiveEnterprise(this.State, entLookup);
|
|
@@ -6811,6 +6811,121 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
6811
6811
|
args: [StateConfigFormComponent]
|
|
6812
6812
|
}] } });
|
|
6813
6813
|
|
|
6814
|
+
class EditProjectFormComponent {
|
|
6815
|
+
constructor(eacSvc, formBldr) {
|
|
6816
|
+
this.eacSvc = eacSvc;
|
|
6817
|
+
this.formBldr = formBldr;
|
|
6818
|
+
this.SaveFormEvent = new EventEmitter;
|
|
6819
|
+
}
|
|
6820
|
+
get DescriptionFormControl() {
|
|
6821
|
+
return this.ProjectFormGroup.controls.description;
|
|
6822
|
+
}
|
|
6823
|
+
get Project() {
|
|
6824
|
+
return this.State?.EaC?.Projects[this.ProjectLookup];
|
|
6825
|
+
}
|
|
6826
|
+
get NameFormControl() {
|
|
6827
|
+
return this.ProjectFormGroup.controls.name;
|
|
6828
|
+
}
|
|
6829
|
+
get State() {
|
|
6830
|
+
return this.eacSvc.State;
|
|
6831
|
+
}
|
|
6832
|
+
ngOnInit() {
|
|
6833
|
+
this.setupProjectForm();
|
|
6834
|
+
}
|
|
6835
|
+
SaveProject() {
|
|
6836
|
+
const proj = this.Project;
|
|
6837
|
+
// console.log("APP=", app);
|
|
6838
|
+
proj.Project = {
|
|
6839
|
+
Name: this.NameFormControl.value,
|
|
6840
|
+
Description: this.DescriptionFormControl.value,
|
|
6841
|
+
};
|
|
6842
|
+
const saveProjReq = {
|
|
6843
|
+
ProjectLookup: this.ProjectLookup,
|
|
6844
|
+
Project: proj
|
|
6845
|
+
};
|
|
6846
|
+
this.eacSvc.SaveProjectAsCode(saveProjReq).then(res => {
|
|
6847
|
+
this.SaveFormEvent.emit(res);
|
|
6848
|
+
});
|
|
6849
|
+
}
|
|
6850
|
+
SubmitProjectControl() {
|
|
6851
|
+
console.log("application form: ", this.ProjectFormGroup.value);
|
|
6852
|
+
this.SaveProject();
|
|
6853
|
+
}
|
|
6854
|
+
setupProjectForm() {
|
|
6855
|
+
if (this.Project != null) {
|
|
6856
|
+
this.ProjectFormGroup = this.formBldr.group({
|
|
6857
|
+
name: [this.Project?.Project?.Name, Validators.required],
|
|
6858
|
+
description: [
|
|
6859
|
+
this.Project?.Project?.Description,
|
|
6860
|
+
Validators.required,
|
|
6861
|
+
]
|
|
6862
|
+
});
|
|
6863
|
+
}
|
|
6864
|
+
}
|
|
6865
|
+
}
|
|
6866
|
+
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 });
|
|
6867
|
+
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"] }] });
|
|
6868
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: EditProjectFormComponent, decorators: [{
|
|
6869
|
+
type: Component,
|
|
6870
|
+
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: [""] }]
|
|
6871
|
+
}], ctorParameters: function () { return [{ type: EaCService }, { type: i1$2.FormBuilder }]; }, propDecorators: { ProjectLookup: [{
|
|
6872
|
+
type: Input,
|
|
6873
|
+
args: ['project-lookup']
|
|
6874
|
+
}], SaveFormEvent: [{
|
|
6875
|
+
type: Output,
|
|
6876
|
+
args: ['save-form-event']
|
|
6877
|
+
}] } });
|
|
6878
|
+
|
|
6879
|
+
class EditProjectDialogComponent {
|
|
6880
|
+
constructor(eacSvc, dialogRef, data, snackBar) {
|
|
6881
|
+
this.eacSvc = eacSvc;
|
|
6882
|
+
this.dialogRef = dialogRef;
|
|
6883
|
+
this.data = data;
|
|
6884
|
+
this.snackBar = snackBar;
|
|
6885
|
+
}
|
|
6886
|
+
get Project() {
|
|
6887
|
+
return this.State?.EaC?.Projects[this.data.projectLookup];
|
|
6888
|
+
}
|
|
6889
|
+
get ProjectFormGroup() {
|
|
6890
|
+
return this.EditProjectControl?.ProjectFormGroup;
|
|
6891
|
+
}
|
|
6892
|
+
get State() {
|
|
6893
|
+
return this.eacSvc.State;
|
|
6894
|
+
}
|
|
6895
|
+
ngOnInit() {
|
|
6896
|
+
}
|
|
6897
|
+
CloseDialog() {
|
|
6898
|
+
this.dialogRef.close();
|
|
6899
|
+
}
|
|
6900
|
+
HandleSaveProjectEvent(event) {
|
|
6901
|
+
console.log("event to save: ", event);
|
|
6902
|
+
if (event.Code === 0) {
|
|
6903
|
+
this.snackBar.open("Project Succesfully Updated", "Dismiss", {
|
|
6904
|
+
duration: 5000
|
|
6905
|
+
});
|
|
6906
|
+
this.CloseDialog();
|
|
6907
|
+
}
|
|
6908
|
+
else {
|
|
6909
|
+
this.ErrorMessage = event.Message;
|
|
6910
|
+
}
|
|
6911
|
+
}
|
|
6912
|
+
SaveProject() {
|
|
6913
|
+
this.EditProjectControl.SaveProject();
|
|
6914
|
+
}
|
|
6915
|
+
}
|
|
6916
|
+
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 });
|
|
6917
|
+
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"] }] });
|
|
6918
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: EditProjectDialogComponent, decorators: [{
|
|
6919
|
+
type: Component,
|
|
6920
|
+
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: [""] }]
|
|
6921
|
+
}], ctorParameters: function () { return [{ type: EaCService }, { type: i2$3.MatDialogRef }, { type: undefined, decorators: [{
|
|
6922
|
+
type: Inject,
|
|
6923
|
+
args: [MAT_DIALOG_DATA]
|
|
6924
|
+
}] }, { type: i3$1.MatSnackBar }]; }, propDecorators: { EditProjectControl: [{
|
|
6925
|
+
type: ViewChild,
|
|
6926
|
+
args: [EditProjectFormComponent]
|
|
6927
|
+
}] } });
|
|
6928
|
+
|
|
6814
6929
|
class ApplicationsFlowModule {
|
|
6815
6930
|
static forRoot() {
|
|
6816
6931
|
return {
|
|
@@ -6878,7 +6993,9 @@ ApplicationsFlowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0",
|
|
|
6878
6993
|
EmulatedDevicesToggleComponent,
|
|
6879
6994
|
FeedHeaderDialogComponent,
|
|
6880
6995
|
StateConfigDialogComponent,
|
|
6881
|
-
StateConfigFormComponent
|
|
6996
|
+
StateConfigFormComponent,
|
|
6997
|
+
EditProjectDialogComponent,
|
|
6998
|
+
EditProjectFormComponent], imports: [AngularEditorModule,
|
|
6882
6999
|
ClipboardModule,
|
|
6883
7000
|
FathymSharedModule,
|
|
6884
7001
|
FormsModule,
|
|
@@ -6939,7 +7056,9 @@ ApplicationsFlowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0",
|
|
|
6939
7056
|
DFSModifiersDialogComponent,
|
|
6940
7057
|
DFSModifiersFormComponent,
|
|
6941
7058
|
StateConfigDialogComponent,
|
|
6942
|
-
StateConfigFormComponent
|
|
7059
|
+
StateConfigFormComponent,
|
|
7060
|
+
EditProjectDialogComponent,
|
|
7061
|
+
EditProjectFormComponent] });
|
|
6943
7062
|
ApplicationsFlowModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: ApplicationsFlowModule, imports: [[
|
|
6944
7063
|
AngularEditorModule,
|
|
6945
7064
|
ClipboardModule,
|
|
@@ -7009,6 +7128,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
7009
7128
|
FeedHeaderDialogComponent,
|
|
7010
7129
|
StateConfigDialogComponent,
|
|
7011
7130
|
StateConfigFormComponent,
|
|
7131
|
+
EditProjectDialogComponent,
|
|
7132
|
+
EditProjectFormComponent,
|
|
7012
7133
|
],
|
|
7013
7134
|
imports: [
|
|
7014
7135
|
AngularEditorModule,
|
|
@@ -7076,7 +7197,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImpor
|
|
|
7076
7197
|
DFSModifiersDialogComponent,
|
|
7077
7198
|
DFSModifiersFormComponent,
|
|
7078
7199
|
StateConfigDialogComponent,
|
|
7079
|
-
StateConfigFormComponent
|
|
7200
|
+
StateConfigFormComponent,
|
|
7201
|
+
EditProjectDialogComponent,
|
|
7202
|
+
EditProjectFormComponent
|
|
7080
7203
|
],
|
|
7081
7204
|
entryComponents: [
|
|
7082
7205
|
ApplicationsFlowProjectsElementComponent,
|
|
@@ -7169,5 +7292,5 @@ class FormModel {
|
|
|
7169
7292
|
* Generated bundle index. Do not edit.
|
|
7170
7293
|
*/
|
|
7171
7294
|
|
|
7172
|
-
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 };
|
|
7295
|
+
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 };
|
|
7173
7296
|
//# sourceMappingURL=lowcodeunit-applications-flow-common.mjs.map
|