@magic-xpa/engine 4.1300.0-dev4130.134 → 4.1300.0-dev4130.136

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.
@@ -210,7 +210,6 @@ class ConstInterface {
210
210
  static MG_ATTR_USER = "user";
211
211
  static MG_ATTR_FORCE_EXIT = "force_exit";
212
212
  static MG_ATTR_PUBLIC = "public_name";
213
- static MG_ATTR_FOLDER_NAME = "folder_name";
214
213
  static MG_ATTR_PRG_DESCRIPTION = "prgDescription";
215
214
  static MG_ATTR_TABLE_NAME = "table_name";
216
215
  static MG_ATTR_INDEX_IN_TABLE = "index_in_table";
@@ -27132,8 +27131,6 @@ class MgForm extends MgFormBase {
27132
27131
  task = task.StudioParentTask;
27133
27132
  name = (task.getProp(PropInterface.PROP_TYPE_NAME)).GetComputedValue() + '_' + name;
27134
27133
  }
27135
- if (task.FolderName !== null)
27136
- name = task.FolderName + "_" + name;
27137
27134
  name = name.replace(/ /g, "_");
27138
27135
  name = name.replace(/-/g, "_");
27139
27136
  return name;
@@ -30193,7 +30190,6 @@ class Task extends TaskBase {
30193
30190
  _forms = null;
30194
30191
  Name = null;
30195
30192
  PublicName = null;
30196
- FolderName = null;
30197
30193
  /// <summary>
30198
30194
  /// indicates whether the task suffix was performed for this task
30199
30195
  /// </summary>
@@ -30379,9 +30375,6 @@ class Task extends TaskBase {
30379
30375
  case ConstInterface.MG_ATTR_PUBLIC:
30380
30376
  this.PublicName = XmlParser.unescape(valueStr);
30381
30377
  break;
30382
- case ConstInterface.MG_ATTR_FOLDER_NAME:
30383
- this.FolderName = XmlParser.unescape(valueStr);
30384
- break;
30385
30378
  case XMLConstants.MG_ATTR_IS_OFFLINE:
30386
30379
  this.IsOffline = XmlParser.getBoolean(valueStr);
30387
30380
  break;
@@ -39703,7 +39696,7 @@ class CommandsTable {
39703
39696
  }
39704
39697
  }
39705
39698
 
39706
- let CurrentClientVersion = '4.1300.0-dev4130.134';
39699
+ let CurrentClientVersion = '4.1300.0-dev4130.136';
39707
39700
 
39708
39701
  // @dynamic
39709
39702
  class ClientManager {