@lowcodeunit/applications-flow-common 1.37.106-new-project-page → 1.37.107-new-project-page
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/lib/controls/dfs-modifiers-form/dfs-modifiers-form.component.mjs +5 -5
- package/esm2020/lib/dialogs/dfs-modifiers-dialog/dfs-modifiers-dialog.component.mjs +5 -5
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +8 -8
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +8 -8
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/package.json +1 -1
@@ -6759,7 +6759,7 @@ class DFSModifiersFormComponent {
|
|
6759
6759
|
}
|
6760
6760
|
// API Methods
|
6761
6761
|
CreateNewModifier() {
|
6762
|
-
console.log('CREATE NEW MOD');
|
6762
|
+
// console.log('CREATE NEW MOD');
|
6763
6763
|
this.SetEditingModifier(Guid.CreateRaw());
|
6764
6764
|
}
|
6765
6765
|
DeleteModifier(modifierLookup, modifierName) {
|
@@ -6888,13 +6888,13 @@ class DFSModifiersFormComponent {
|
|
6888
6888
|
return details;
|
6889
6889
|
}
|
6890
6890
|
setupModifierSelectForm() {
|
6891
|
-
console.log('setup mod select form');
|
6891
|
+
// console.log('setup mod select form');
|
6892
6892
|
this.ModifierSelectFormGroup = this.formBldr.group({
|
6893
6893
|
multiSelect: [this.ModifierLookups ? this.ModifierLookups : []],
|
6894
6894
|
});
|
6895
6895
|
}
|
6896
6896
|
setupModifierForm() {
|
6897
|
-
console.log('editing mod: ', this.EditingModifier);
|
6897
|
+
// console.log('editing mod: ', this.EditingModifier);
|
6898
6898
|
if (this.EditingModifier != null) {
|
6899
6899
|
this.CurrentType = this.EditingModifier?.Type;
|
6900
6900
|
this.ModifierFormGroup = this.formBldr.group({
|
@@ -6917,7 +6917,7 @@ class DFSModifiersFormComponent {
|
|
6917
6917
|
this.setupTypeForm();
|
6918
6918
|
}
|
6919
6919
|
else {
|
6920
|
-
console.log('setup new form');
|
6920
|
+
// console.log('setup new form');
|
6921
6921
|
this.ModifierFormGroup = this.formBldr.group({
|
6922
6922
|
name: ['', Validators.required],
|
6923
6923
|
type: ['', Validators.required],
|
@@ -6999,7 +6999,7 @@ class DFSModifiersDialogComponent {
|
|
6999
6999
|
return this.DFSModifersFormControls?.ModifierSelectFormGroup;
|
7000
7000
|
}
|
7001
7001
|
ngOnInit() {
|
7002
|
-
console.log('dfs data: ', this.data);
|
7002
|
+
// console.log('dfs data: ', this.data);
|
7003
7003
|
this.StateSub = this.eacSvc.State.subscribe((state) => {
|
7004
7004
|
this.State = state;
|
7005
7005
|
if (this.State?.EaC?.Projects) {
|
@@ -7018,7 +7018,7 @@ class DFSModifiersDialogComponent {
|
|
7018
7018
|
this.eacSvc.DeleteModifier(this.data.modifierLookup, this.data.modifierName);
|
7019
7019
|
}
|
7020
7020
|
HandleSaveFormEvent(event) {
|
7021
|
-
console.log('event: ', event);
|
7021
|
+
// console.log('event: ', event);
|
7022
7022
|
if (event.Code === 0) {
|
7023
7023
|
this.snackBar.open('DFS Modifier Saved Successfully', 'Dismiss', {
|
7024
7024
|
duration: 5000,
|
@@ -7042,7 +7042,7 @@ class DFSModifiersDialogComponent {
|
|
7042
7042
|
!this.SelectedModifiersFormGroup?.valid ||
|
7043
7043
|
!this.SelectedModifiersFormGroup?.dirty;
|
7044
7044
|
}
|
7045
|
-
console.log('Save disabled: ', this.SaveDisabled);
|
7045
|
+
// console.log('Save disabled: ', this.SaveDisabled);
|
7046
7046
|
return this.SaveDisabled;
|
7047
7047
|
}
|
7048
7048
|
IsPreconfigured() {
|
@@ -7095,7 +7095,7 @@ class DFSModifiersDialogComponent {
|
|
7095
7095
|
// this.DFSModifersFormControls.SaveModifier();
|
7096
7096
|
}
|
7097
7097
|
determineLevel() {
|
7098
|
-
console.log('LEVEL: ', this.data.level);
|
7098
|
+
// console.log('LEVEL: ', this.data.level);
|
7099
7099
|
switch (this.data.level.toLowerCase()) {
|
7100
7100
|
case 'enterprise': {
|
7101
7101
|
this.setupEntForm();
|